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
11 changes: 6 additions & 5 deletions .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:

matrix:
os: [ubuntu-24.04]
python-version: ["3.10", "3.12"]
python-version: ["3.10", "3.14"]
backend: [numpy, jax]

env:
PYOM2_DIR: /home/runner/pyom2
PETSC_VERSION: "3.23.3"
PETSC_VERSION: "3.24.5"
OMPI_MCA_rmaps_base_oversubscribe: "1"
OMPI_MCA_mpi_yield_when_idle: "1"
VEROS_REQUIRE_CYTHON_EXT: "1"
Expand Down Expand Up @@ -77,9 +77,10 @@ jobs:

- name: Install optional requirements
run: |
# PETSc has issues with mpi4py v4
pip install "mpi4py<4"
pip install mpi4jax --no-build-isolation
pip install mpi4py nanobind
if [ ${{ matrix.backend }} == "jax" ]; then
pip install mpi4jax --no-build-isolation
fi
pip install petsc==$PETSC_VERSION --no-build-isolation
pip install petsc4py==$PETSC_VERSION --no-build-isolation

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.12"]
python-version: ["3.10", "3.14"]
nocc: [false]

include:
Expand Down
2 changes: 1 addition & 1 deletion conda-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
- nodefaults

dependencies:
- python=3.12
- python=3.13
- pip>=24.0
- click
- entrypoints
Expand Down
2 changes: 1 addition & 1 deletion requirements_jax.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
jax==0.9.0.1
jax==0.9.1
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
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 :: Implementation :: CPython
Topic :: Scientific/Engineering
Operating System :: Microsoft :: Windows
Expand Down
Loading