Skip to content

Commit

Permalink
Enable Python 12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
reuterbal committed Oct 15, 2024
1 parent f69a6dc commit 51de5f0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false # false: try to complete all jobs
matrix:
python-version: ["3.11"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false # false: try to complete all jobs
matrix:
python-version: ["3.10"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation_clean-up.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false # false: try to complete all jobs
matrix:
python-version: ["3.10"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regression_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false # false: try to complete all jobs
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- linux python-3.9
- linux python-3.10
- linux python-3.11
- linux python-3.12
- macos python-3.11

include:
Expand All @@ -40,6 +41,9 @@ jobs:
- name: linux python-3.11
os: ubuntu-20.04
python-version: '3.11'
- name: linux python-3.12
os: ubuntu-20.04
python-version: '3.12'
- name: macos python-3.11
os: macos-14
python-version: '3.11'
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = [
"setuptools >= 61",
"wheel",
"setuptools_scm[toml] >= 6.2",
"numpy<1.24"
"numpy"
]
build-backend = "setuptools.build_meta"

Expand All @@ -14,7 +14,7 @@ authors = [
{name = "ECMWF", email = "[email protected]"},
]
description = "Experimental Fortran IR to facilitate source-to-source transformations"
requires-python = ">=3.8,<3.12"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
dynamic = ["version", "readme"]
dependencies = [
Expand Down

0 comments on commit 51de5f0

Please sign in to comment.