diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 0a60ad3..dcb9cc6 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -25,7 +25,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12" cache: pip cache-dependency-path: pyproject.toml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 28a09d2..a1ed4d0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12" - name: Install dependencies run: | diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e5f4c00..a6283e7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.9", "3.11"] + python-version: ["3.9", "3.12"] defaults: run: diff --git a/pyproject.toml b/pyproject.toml index 311c630..6b064b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,13 +17,14 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", "Operating System :: MacOS", ] -requires-python = ">=3.9, <3.12" +requires-python = ">=3.9, <3.13" dependencies = ["numpy"] [project.optional-dependencies]