From 0249240a449e1654f353d4bf1d494fa011ae73a1 Mon Sep 17 00:00:00 2001 From: "Saigiridharan, Lakshidaa" Date: Fri, 15 Sep 2023 13:31:12 +0000 Subject: [PATCH] Update Python version to 3.9 - 3.11 --- CHANGELOG.md | 6 ++++++ conda-env.yml | 2 +- docs/conf.py | 2 +- pyproject.toml | 4 ++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 356d6e6..2cc4071 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## Version 1.1.1 - 2023-09-15 + +### Trivial changes + +- Update Python version to >=3.9 and <3.11 + ## Version 1.1.0 - 2022-11-23 ### Trivial changes diff --git a/conda-env.yml b/conda-env.yml index 677cfab..bc67489 100644 --- a/conda-env.yml +++ b/conda-env.yml @@ -3,5 +3,5 @@ channels: - https://conda.anaconda.org/conda-forge - defaults dependencies: - - python>=3.8,<3.10 + - python>=3.9,<3.11 - poetry>=1.1.4,<2.0 \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 088ab6f..d262dcd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -6,7 +6,7 @@ project = "route-distances" copyright = "2021-2022, Molecular AI group" author = "Molecular AI group" -release = "1.1.0" +release = "1.1.1" extensions = [ "sphinx.ext.autodoc", diff --git a/pyproject.toml b/pyproject.toml index e164a5f..e722d2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "route-distances" -version = "1.1.0" +version = "1.1.1" description = "Models for calculating distances between synthesis routes" authors = ["Genheden, Samuel "] license = "MIT" @@ -15,7 +15,7 @@ prepare_aizynthfinder_output = "route_distances.tools.prepare_aizynthfinder_outp cluster_aizynth_output = "route_distances.tools.cluster_aizynth_output:main" [tool.poetry.dependencies] -python = ">=3.8,<3.10" +python = ">=3.9,<3.11" torch = "^1.7.1" pytorch-tree-lstm = "^0.1.3" pytorch-lightning = "^1.6.0"