Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Renaming Cursor Functions #895

Merged
merged 25 commits into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3300f28
fixing doc string for create_vector_index()
aryan-rajoria Jun 25, 2023
1f75c95
rename UDF to function in python API
aryan-rajoria Jun 25, 2023
7a8f562
feat: cleanup create mat view (#893)
yulaicui Jun 25, 2023
3e95be8
app: youtube channel qa app (#896)
jarulraj Jun 25, 2023
54a8c43
feat: pandas qa sample app (#885)
yulaicui Jun 26, 2023
2398783
feat: add support for 3.11 (#897)
jarulraj Jun 26, 2023
19c7f09
fix: GPU ids and degree of parallelism (#817)
jiashenC Jun 26, 2023
e2bfa06
docs: Update README.md
jarulraj Jun 26, 2023
a5c951b
fix: index creation better error msg (#898)
jiashenC Jun 26, 2023
c8059e2
docs: Update version.py
jarulraj Jun 26, 2023
212a30b
[RELEASE]: 0.2.15 (#902)
jarulraj Jun 26, 2023
f591ab5
Bump v0.3.0+dev (#903)
jarulraj Jun 26, 2023
6f55dff
docs: Update README.md
jarulraj Jun 26, 2023
70ada35
docs: Update README.md
jarulraj Jun 26, 2023
46a7783
changes to the documentation
aryan-rajoria Jun 26, 2023
97bea9d
feat: chatgpt prompt arg (#904)
jarulraj Jun 26, 2023
3f12cbd
feat: remove ocr (#905)
jarulraj Jun 27, 2023
1fc42fc
change udf to function
aryan-rajoria Jun 27, 2023
22b5be4
linting
aryan-rajoria Jun 27, 2023
e4c366a
fixing doc string for create_vector_index()
aryan-rajoria Jun 25, 2023
a49cfb6
rename UDF to function in python API
aryan-rajoria Jun 25, 2023
b8ed538
changes to the documentation
aryan-rajoria Jun 26, 2023
c7401e4
change udf to function
aryan-rajoria Jun 27, 2023
7b36885
linting
aryan-rajoria Jun 27, 2023
6a06d73
rebasing
aryan-rajoria Jun 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ workflows:
v: "3.10"
mode: "TEST"
ray: "DISABLED"
#- Linux:
# name: "Test | v3.11 | Linux"
# v: "3.11"
# mode: "TEST"
# ray: "DISABLED"
- Linux:
name: "Test | Ray | v3.8 | Linux"
v: "3.8"
Expand All @@ -53,7 +58,7 @@ workflows:
# name: "Test | v3.11 | Linux"
# v: "3.11"
# mode: "TEST"
# ray: "DISABLED"
# ray: "ENABLED"
################################
### NOTEBOOKS
################################
Expand All @@ -73,6 +78,11 @@ workflows:
v: "3.10"
mode: "NOTEBOOK"
ray: "DISABLED"
#- Linux:
# name: "Notebook | v3.11 | Linux"
# v: "3.11"
# mode: "NOTEBOOK"
# ray: "DISABLED"
- Linux:
name: "Notebook | Ray | v3.8 | Linux"
v: "3.8"
Expand Down Expand Up @@ -147,7 +157,6 @@ jobs:
pip install --upgrade pip
source test_evadb/bin/activate
pip install ".[dev]"
pip uninstall -y ray

# Enable Ray (update evadb.yml file and install Ray package)
- when:
Expand All @@ -159,7 +168,7 @@ jobs:
command: |
source test_evadb/bin/activate
python -c "import yaml;f = open('evadb/evadb.yml', 'r+');config_obj = yaml.load(f, Loader=yaml.FullLoader);config_obj['experimental']['ray'] = True;f.seek(0);f.write(yaml.dump(config_obj));f.truncate();"
pip install ".[dev]"
pip install ".[ray]"

- run:
name: Test and upload coverage report to coveralls
Expand Down Expand Up @@ -246,6 +255,7 @@ jobs:
name: Install EVA package locally and start server
command: |
pip install --upgrade pip
pip cache purge
pip install "."
bash script/test/package.sh

Expand Down
47 changes: 6 additions & 41 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
name: 🐞 Bug Report
description: Problems with EVA DB
description: Problems with EvaDB
labels: [bug, triage]
body:
- type: markdown
attributes:
value: |
🙏 Thanks for submitting a EVA DB Bug Report!

- type: checkboxes
attributes:
Expand All @@ -14,25 +10,9 @@ body:
🔍 Please search the [issues](https://github.com/georgia-tech-db/eva/issues) to see if a similar bug report already exists.
options:
- label: >
I have searched the EVA DB [issues](https://github.com/georgia-tech-db/eva/issues) and found no similar bug report.
I have searched the EvaDB [issues](https://github.com/georgia-tech-db/eva/issues) and found no similar bug report.
required: true

- type: dropdown
attributes:
label: EVA DB Component
description: |
🤔 Please select the part of EVA DB where you found the bug.
multiple: true
options:
- "Query Parser"
- "Query Optimizer"
- "Query Executor"
- "Data Loader"
- "Integrations"
- "Other"
validations:
required: false

- type: textarea
attributes:
label: Bug
Expand All @@ -47,34 +27,19 @@ body:
label: Environment
description: 🖥️ Please specify the software and hardware you used to produce the bug.
placeholder: |
- EVA DB: v2.0.1
- EvaDB: v2.0.1
- OS: Ubuntu 20.04
- Python: 3.9.0
- GPU: Yes
- Ray: Not installed
validations:
required: false

- type: textarea
attributes:
label: Minimal Reproducible Example
description: >
🧐 When asking a question, people will be better able to provide help if you provide code that they can easily understand and use to **reproduce** the problem.
placeholder: |
```
# Code to reproduce your issue here
```
validations:
required: false

- type: textarea
attributes:
label: Additional
description: 📝 Anything else you would like to share?

- type: checkboxes
attributes:
label: Are you willing to submit a PR?
description: >
👍 (Optional) Please consider submitting a [Pull Request](https://github.com/georgia-tech-db/eva/pulls) (PR) to help improve EVA DB for everyone, especially if you have a good understanding of how to implement a fix or feature.
👍 (Optional) Please consider submitting a [Pull Request](https://github.com/georgia-tech-db/eva/pulls) (PR) to help improve EvaDB for everyone, especially if you have a good understanding of how to implement a fix or feature.
Please see our ✅ [Contributing Guide](https://evadb.readthedocs.io/en/stable/source/contribute/index.html) to get started.
options:
- label: Yes I'd like to help by submitting a PR!
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ blank_issues_enabled: true
contact_links:
- name: 📚 Documentation
url: https://evadb.readthedocs.io/en/stable/
about: View EVA DB Docs
about: View EvaDB Documentation
- name: 💬 Slack
url: https://join.slack.com/t/eva-db/shared_invite/zt-1i10zyddy-PlJ4iawLdurDv~aIAq90Dg
about: Ask on EVA DB Slack Forum
about: Join our Slack!
17 changes: 4 additions & 13 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
name: 🚀 Feature Request
description: Suggest a feature for EVA DB
description: Suggest a feature for EvaDB
labels: [enhancement]
body:
- type: markdown
attributes:
value: |
🙏 Thanks for submitting a EVA DB Feature Request!

- type: checkboxes
attributes:
Expand All @@ -14,15 +10,15 @@ body:
🔍 Please search the [issues](https://github.com/georgia-tech-db/eva/issues) to see if a similar feature request already exists.
options:
- label: >
I have searched the EVA DB [issues](https://github.com/georgia-tech-db/eva/issues) and found no similar feature requests.
I have searched the EvaDB [issues](https://github.com/georgia-tech-db/eva/issues) and found no similar feature requests.
required: true

- type: textarea
attributes:
label: Description
description: 💡 A short description of your feature.
placeholder: |
What new feature would you like to see in EVA DB?
What new feature would you like to see in EvaDB?
validations:
required: true

Expand All @@ -34,16 +30,11 @@ body:
placeholder: |
How would this feature be used, and who would use it?

- type: textarea
attributes:
label: Additional
description: 📝 Anything else you would like to share?

- type: checkboxes
attributes:
label: Are you willing to submit a PR?
description: >
(Optional) Please consider submitting a [Pull Request](https://github.com/georgia-tech-db/eva/pulls) (PR) to help improve EVA DB for everyone, especially if you have a good understanding of how to implement a fix or feature.
(Optional) Please consider submitting a [Pull Request](https://github.com/georgia-tech-db/eva/pulls) (PR) to help improve EvaDB for everyone, especially if you have a good understanding of how to implement a fix or feature.
Please see our ✅ [Contributing Guide](https://github.com/georgia-tech-db/eva/pulls) to get started.
options:
- label: Yes I'd like to help by submitting a PR!
16 changes: 3 additions & 13 deletions .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,15 @@
name: ❓ Question
description: Ask a EVA DB question
description: Ask a question on EvaDB
labels: [question]
body:
- type: markdown
attributes:
value: |
🙏 Thanks for asking a EVA DB Question!
- type: checkboxes
attributes:
label: Search before asking
description: >
🔍 Please search the [issues](https://github.com/georgia-tech-db/eva/issues) to see if a similar question already exists.
🔍 Please search our [issues](https://github.com/georgia-tech-db/eva/issues) to see if a similar question already exists.
options:
- label: >
I have searched the EVA DB [issues](https://github.com/georgia-tech-db/eva/issues) and found no similar questions.
I have searched the EvaDB [issues](https://github.com/georgia-tech-db/eva/issues) and found no similar questions.
required: true
- type: textarea
Expand All @@ -25,8 +20,3 @@ body:
💡 ProTip! Include as much information as possible (screenshots, logs, tracebacks etc.) to receive the most helpful response.
validations:
required: true

- type: textarea
attributes:
label: Additional
description: 📝 Anything else you would like to share?
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### [Deprecated]
### [Removed]

## [0.2.15] - 2023-06-26

* PR #898: fix: index creation better error msg
* PR #817: fix: GPU ids and degree of parallelism
* PR #897: feat: add support for 3.11
* PR #885: feat: pandas qa sample app
* PR #896: app: youtube channel qa app
* PR #893: feat: cleanup create mat view
* PR #892: feat: update notebooks
* PR #894: fix: Youtube app

## [0.2.14] - 2023-06-24

* PR #887: fix: Notebooks fix
Expand Down
Loading