Skip to content

Commit

Permalink
support 3.8 - 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
george1459 committed Apr 8, 2024
1 parent 0de7c68 commit a741184
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion conda_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ channels:
- conda-forge
- defaults
dependencies:
- python=3.10.14
- pip
- pip:
- openai==1.3.2
Expand Down
2 changes: 1 addition & 1 deletion docs/install_source.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ git clone https://github.com/stanford-oval/suql.git

# Installing python dependencies of SUQL

1. Install dependencies via `conda env create -f conda_env.yml`;
1. Install dependencies via `conda create -n suql python=<any one of 3.8,3.9,3.10,3.11>; conda activate suql; conda env update -f conda_env.yml`;

2. Install `faiss` by `conda install -c conda-forge faiss-gpu`. We recommend the GPU version for accelerated indexing speed.

Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]

# Call setup() with package information
Expand Down

0 comments on commit a741184

Please sign in to comment.