From fc61012e63f009d4fd14442ad5df2cfd843ab2ea Mon Sep 17 00:00:00 2001 From: mtar <18899420+mtar@users.noreply.github.com> Date: Wed, 30 Oct 2024 06:39:11 +0000 Subject: [PATCH 1/5] Support latest PyTorch release --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 52190877e..38b2211df 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ install_requires=[ "mpi4py>=3.0.0", "numpy>=1.22.0, <2", - "torch>=2.0.0, <2.4.2", + "torch>=2.0.0, <2.5.2", "scipy>=1.10.0", "pillow>=6.0.0", "torchvision>=0.15.2, <0.19.2", From f4c02732ac70968b180075e75e3864e3453dc930 Mon Sep 17 00:00:00 2001 From: Michael Tarnawa <18899420+mtar@users.noreply.github.com> Date: Wed, 30 Oct 2024 08:01:48 +0100 Subject: [PATCH 2/5] Update dependencies update torchvision; higher bound for python due to our numpy < 2 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 38b2211df..c7a4b7b52 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ author_email="martin.siggel@dlr.de", url="https://github.com/helmholtz-analytics/heat", keywords=["data", "analytics", "tensors", "distributed", "gpu"], - python_requires=">=3.9", + python_requires=">=3.9, <3.13", classifiers=[ "Development Status :: 4 - Beta", "Programming Language :: Python :: 3.9", @@ -38,7 +38,7 @@ "torch>=2.0.0, <2.5.2", "scipy>=1.10.0", "pillow>=6.0.0", - "torchvision>=0.15.2, <0.19.2", + "torchvision>=0.15.2, <0.20.2", ], extras_require={ "docutils": ["docutils>=0.16"], From 2cb730c759332fcf26ff7e6c3a6c74b577a330fc Mon Sep 17 00:00:00 2001 From: Michael Tarnawa <18899420+mtar@users.noreply.github.com> Date: Wed, 30 Oct 2024 08:05:48 +0100 Subject: [PATCH 3/5] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e4381f63d..5ef72f6bd 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -35,7 +35,6 @@ body: options: - main (development branch) - 1.5.x - - 1.4.x validations: required: true - type: dropdown @@ -54,6 +53,7 @@ body: label: PyTorch version description: What PyTorch version? options: + - 2.5 - 2.4 - 2.3 - 2.2 From 3f64d55d7e62126e6c4e0ffa1dc81466bf3fce6f Mon Sep 17 00:00:00 2001 From: Michael Tarnawa <18899420+mtar@users.noreply.github.com> Date: Wed, 30 Oct 2024 08:07:49 +0100 Subject: [PATCH 4/5] Update ci.yaml --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 15def97ed..26d8d3ce7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,6 +24,7 @@ jobs: - 'torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2' - 'torch==2.3.1 torchvision==0.18.1 torchaudio==2.3.1' - 'torch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1' + - 'torch==2.5.1 torchvision==0.20.1 torchaudio==2.5.1' exclude: - py-version: '3.12' pytorch-version: 'torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2' From f055cd6ed49c405c938b3afe7d0f677dea84cc4e Mon Sep 17 00:00:00 2001 From: Michael Tarnawa <18899420+mtar@users.noreply.github.com> Date: Wed, 30 Oct 2024 11:54:39 +0100 Subject: [PATCH 5/5] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c7a4b7b52..bb71bf1c3 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ author_email="martin.siggel@dlr.de", url="https://github.com/helmholtz-analytics/heat", keywords=["data", "analytics", "tensors", "distributed", "gpu"], - python_requires=">=3.9, <3.13", + python_requires=">=3.9", classifiers=[ "Development Status :: 4 - Beta", "Programming Language :: Python :: 3.9",