From f82092da49f9dc6140f1e948d9fd05976b3a14fc Mon Sep 17 00:00:00 2001 From: Johnnie Gray Date: Thu, 16 May 2024 13:43:29 -0700 Subject: [PATCH] update requirements --- .github/workflows/tests.yml | 2 +- ci/requirements/py-base.yml | 4 ++-- ci/requirements/py-jax.yml | 4 ++-- ci/requirements/py-slepc.yml | 4 ++-- ci/requirements/py-tensorflow.yml | 4 ++-- ci/requirements/py-torch.yml | 4 ++-- setup.py | 9 +++++---- 7 files changed, 16 insertions(+), 15 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9542488c..6b47bfb6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: testset: [matrix, tensor] env: [base] os: [ubuntu-latest] - python-version: [3.9, '3.10', '3.11'] + python-version: [3.9, '3.10', '3.11', '3.12'] flaky: [false] include: diff --git a/ci/requirements/py-base.yml b/ci/requirements/py-base.yml index 27a17ba5..ba61c7e4 100644 --- a/ci/requirements/py-base.yml +++ b/ci/requirements/py-base.yml @@ -2,8 +2,8 @@ channels: - defaults - conda-forge dependencies: - - autoray>=0.6.7 - - cotengra>=0.5.6 + - autoray>=0.6.12 + - cotengra>=0.6.1 - coverage - cytoolz - joblib diff --git a/ci/requirements/py-jax.yml b/ci/requirements/py-jax.yml index 4b191c9f..17f7f550 100644 --- a/ci/requirements/py-jax.yml +++ b/ci/requirements/py-jax.yml @@ -2,8 +2,8 @@ channels: - defaults - conda-forge dependencies: - - autoray>=0.6.7 - - cotengra>=0.5.6 + - autoray>=0.6.12 + - cotengra>=0.6.1 - coverage - cytoolz - joblib diff --git a/ci/requirements/py-slepc.yml b/ci/requirements/py-slepc.yml index 5c85abbd..57b6b3e3 100644 --- a/ci/requirements/py-slepc.yml +++ b/ci/requirements/py-slepc.yml @@ -2,8 +2,8 @@ channels: - conda-forge - defaults dependencies: - - autoray>=0.6.7 - - cotengra>=0.5.6 + - autoray>=0.6.12 + - cotengra>=0.6.1 - coverage - cytoolz - joblib diff --git a/ci/requirements/py-tensorflow.yml b/ci/requirements/py-tensorflow.yml index c74e229a..7c1fedb4 100644 --- a/ci/requirements/py-tensorflow.yml +++ b/ci/requirements/py-tensorflow.yml @@ -2,8 +2,8 @@ channels: - defaults - conda-forge dependencies: - - autoray>=0.6.7 - - cotengra>=0.5.6 + - autoray>=0.6.12 + - cotengra>=0.6.1 - coverage - cytoolz - joblib diff --git a/ci/requirements/py-torch.yml b/ci/requirements/py-torch.yml index 36b01d07..9597209f 100644 --- a/ci/requirements/py-torch.yml +++ b/ci/requirements/py-torch.yml @@ -3,8 +3,8 @@ channels: - defaults - conda-forge dependencies: - - autoray>=0.6.7 - - cotengra>=0.5.6 + - autoray>=0.6.12 + - cotengra>=0.6.1 - coverage - cpuonly - cytoolz diff --git a/setup.py b/setup.py index 4388be38..232cf533 100644 --- a/setup.py +++ b/setup.py @@ -22,8 +22,8 @@ def readme(): license="Apache", packages=find_packages(exclude=["deps", "tests*"]), install_requires=[ - "autoray>=0.6.10", - "cotengra>=0.5.6", + "autoray>=0.6.12", + "cotengra>=0.6.1", "cytoolz>=0.8.0", "numba>=0.39", "numpy>=1.17", @@ -48,8 +48,8 @@ def readme(): ], "docs": [ "astroid<3.0.0", - "autoray>=0.6.7", - "cotengra>=0.5.3", + "autoray>=0.6.12", + "cotengra>=0.6.1", "doc2dash>=2.4.1", "furo", "ipython!=8.7.0", @@ -71,6 +71,7 @@ def readme(): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], keywords="quantum physics tensor networks tensors dmrg tebd", )