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
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,34 +43,37 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
mpi: [n, y]
omp: [n, y]
dagmc: [n]
libmesh: [n]
event: [n]

include:
- python-version: "3.12"
- python-version: "3.13"
omp: n
mpi: n
- python-version: "3.13"
- python-version: "3.14"
omp: n
mpi: n
- python-version: "3.14t"
omp: n
mpi: n
- dagmc: y
python-version: "3.11"
python-version: "3.12"
mpi: y
omp: y
- libmesh: y
python-version: "3.11"
python-version: "3.12"
mpi: y
omp: y
- libmesh: y
python-version: "3.11"
python-version: "3.12"
mpi: n
omp: y
- event: y
python-version: "3.11"
python-version: "3.12"
omp: y
mpi: n
name: "Python ${{ matrix.python-version }} (omp=${{ matrix.omp }},
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
]
description = "OpenMC"
dynamic = ["version"]
requires-python = ">=3.11"
requires-python = ">=3.12"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -21,9 +21,9 @@ classifiers = [
"Topic :: Scientific/Engineering",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"numpy",
Expand Down
2 changes: 1 addition & 1 deletion tools/ci/gha-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if [[ $MPI == 'y' ]]; then
export HDF5_MPI=ON
export HDF5_DIR=/usr/lib/x86_64-linux-gnu/hdf5/mpich
# Install h5py without build isolation to pick up already installed mpi4py
pip install Cython pkgconfig
pip install setuptools Cython pkgconfig
pip install --no-build-isolation --no-binary=h5py h5py
fi

Expand Down
Loading