From 6a74420bca82111f060b06b06d44ffcaffcb2a12 Mon Sep 17 00:00:00 2001 From: sfluegel Date: Thu, 9 Jan 2025 12:42:21 +0100 Subject: [PATCH 1/3] add 3.12 to tests, change requirement from python <3.12 to <3.13 --- .github/workflows/test.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b0792c99..1f819cd8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index 58bfc75b..eca4647e 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ author_email="martin.glauer@ovgu.de", description="", zip_safe=False, - python_requires=">=3.9, <3.12", + python_requires=">=3.9, <3.13", install_requires=[ "certifi", "idna", From 294c4a6b49037453ed144d22bd77f6d17dc287dd Mon Sep 17 00:00:00 2001 From: sfluegel Date: Thu, 9 Jan 2025 13:30:10 +0100 Subject: [PATCH 2/3] add lightning 2.5 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eca4647e..a9aed26b 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ "matplotlib", "rdkit", "selfies", - "lightning<=2.1", + "lightning<=2.1,>=2.5", "jsonargparse[signatures]>=4.17", "omegaconf", "seaborn", From ee3ff4088947493315175373503b9fe34fb06c89 Mon Sep 17 00:00:00 2001 From: sfluegel Date: Mon, 3 Mar 2025 17:29:05 +0100 Subject: [PATCH 3/3] fix lightning version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a9aed26b..02bdaa1a 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ "matplotlib", "rdkit", "selfies", - "lightning<=2.1,>=2.5", + "lightning>=2.5", "jsonargparse[signatures]>=4.17", "omegaconf", "seaborn",