Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pytest-core-mpi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.10', '3.11']
python-version: ['3.11', '3.14']

env:
DEVITO_LANGUAGE: "openmp"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pytest-core-nompi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
pytest-ubuntu-py311-gcc10-noomp,
pytest-ubuntu-py311-gcc11-cxxnoomp,
pytest-ubuntu-py312-gcc12-cxxomp,
pytest-ubuntu-py312-gcc13-omp,
pytest-ubuntu-py314-gcc13-omp,
pytest-ubuntu-py313-gcc14-omp
]
set: [base, adjoint]
Expand Down Expand Up @@ -73,8 +73,8 @@ jobs:
language: "C"
sympy: "1.14"

- name: pytest-ubuntu-py312-gcc13-omp
python-version: '3.12'
- name: pytest-ubuntu-py314-gcc13-omp
python-version: '3.14'

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally I would change the name of the run too

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure, fixed

os: ubuntu-24.04
arch: "gcc-13"
language: "openmp"
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
fi
id: set-tests

- name: Set pip flags for latest python (3.12)
- name: Set pip flags for Python 3.12+
run: |
ver="${{ matrix.python-version }}"
major=${ver%%.*}
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description = "Finite Difference DSL for symbolic computation."
license = { file = "LICENSE.md" }
readme = "README.md"
keywords = ["finite-difference", "DSL", "symbolic", "jit", "devito"]
requires-python = ">=3.10,<3.14"
requires-python = ">=3.10,<3.15"
authors = [
{ name = "Imperial College London", email = "g.gorman@imperial.ac.uk" },
{ name = "Fabio Luporini", email = "fabio@devitocodes.com" },
Expand All @@ -32,6 +32,8 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
Expand Down
4 changes: 2 additions & 2 deletions requirements-optional.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
matplotlib<3.10.10
pillow>11,<12.2.1
pyrevolve==2.2.7
scipy<1.15.4
pyrevolve==2.2.8
scipy>=1.8.0,<1.18.1
distributed<2026.7.2
click<9.0
cloudpickle<3.1.3
2 changes: 1 addition & 1 deletion requirements-testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pytest-runner<6.0.2
pytest-cov<7.1.1
flake8-pyproject>=1.2.3,<1.2.5
nbval<0.11.1
scipy<1.15.4
scipy>=1.8.0,<1.18.1
pooch<1.9.1
click<9.0
cloudpickle<3.1.3
Expand Down
Loading