From c45b85fd590ef6f02fb1853c74f204f81e6998fd Mon Sep 17 00:00:00 2001 From: "Lumberbot (aka Jack)" <39504233+meeseeksmachine@users.noreply.github.com> Date: Tue, 4 Jul 2023 01:48:14 -0700 Subject: [PATCH] Backport PR #2138: Bump to 1.0.1, add missing release notes (#2139) Co-authored-by: Martin Kim <46072231+martinkim0@users.noreply.github.com> --- docs/release_notes/index.md | 10 ++++++++++ pyproject.toml | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/release_notes/index.md b/docs/release_notes/index.md index 180e52e3b3..012a984543 100644 --- a/docs/release_notes/index.md +++ b/docs/release_notes/index.md @@ -17,6 +17,16 @@ is available in the [commit logs](https://github.com/YosefLab/scvi-tools/commits ## Version 1.0 +### 1.0.1 (2023-07-04) + +#### Added + +- Add support for Python 3.11 {pr}`1977`. + +#### Changed + +- Upper bound Chex dependency to 0.1.8 due to NumPy installation conflicts {pr}`2132`. + ### 1.0.0 (2023-06-02) #### Added diff --git a/pyproject.toml b/pyproject.toml index 615f467c32..f51ea58947 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires = ["hatchling"] [project] name = "scvi-tools" -version = "1.0.0" +version = "1.0.1" description = "Deep probabilistic analysis of single-cell omics data." readme = "README.md" requires-python = ">=3.9" @@ -25,6 +25,7 @@ classifiers = [ "Natural Language :: English", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux",