Skip to content

Commit

Permalink
Update pyproject.toml (openai#666)
Browse files Browse the repository at this point in the history
For pypi, we can have the install process be:
```
pip install evals==1.0.2 # stable release with no data, distributed from `no-evals-pypi`
pip install evals==1.0.2.post1 # post-release identifier, with data, distributed from `main`
```
`pip install evals` will then install `1.0.2.post1` by default
(including data) as the latest stable release.

Repeat process for each stable release
  • Loading branch information
andrew-openai committed Apr 13, 2023
1 parent 17e1319 commit 9a40750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "evals"
version = "1.0.1"
version = "1.0.2.post1"
requires-python = ">=3.9"
dependencies = [
"mypy",
Expand Down

0 comments on commit 9a40750

Please sign in to comment.