From 9a40750ef4ba0516e0ce36a82ab9f9b5f03e8fb7 Mon Sep 17 00:00:00 2001 From: Andrew Kondrich <120423412+andrew-openai@users.noreply.github.com> Date: Thu, 13 Apr 2023 15:22:28 -0700 Subject: [PATCH] Update pyproject.toml (#666) 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 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index be9e5be86d..110fa3fc65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "evals" -version = "1.0.1" +version = "1.0.2.post1" requires-python = ">=3.9" dependencies = [ "mypy",