Skip to content

Commit

Permalink
Fixes issue #155 and #51 (#310)
Browse files Browse the repository at this point in the history
Min Python version is actually 3.9 not 3.8 as is says in
"pyproject.toml".
  • Loading branch information
andremafei committed Mar 21, 2023
1 parent 73fddc5 commit f118fca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
__pycache__/
evals.egg-info/
.vscode/
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ ____________________

To run evals, you will need to set up and specify your OpenAI API key. You can generate one at <https://platform.openai.com/account/api-keys>. After you obtain an API key, specify it using the `OPENAI_API_KEY` environment variable. **Please be aware of the [costs](https://openai.com/pricing) associated with using the API when running evals.**

**Minimal Required Version: Python 3.9**

### Downloading evals

Our Evals registry is stored using [Git-LFS](https://git-lfs.com/). Once you have downloaded and installed LFS, you can fetch the evals with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "evals"
version = "0.1.1"
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"mypy",
"openai >= 0.27.2",
Expand Down

0 comments on commit f118fca

Please sign in to comment.