Move to support python 3.13 (#3165)

This commit is contained in:
Micah Gale 2025-01-08 11:47:25 -06:00 committed by GitHub
parent 6a5d80efd6
commit 10a63bbd27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 13 additions and 13 deletions

View file

@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
mpi: [n, y]
omp: [n, y]
dagmc: [n]
@ -35,34 +35,34 @@ jobs:
vectfit: [n]
include:
- python-version: "3.11"
omp: n
mpi: n
- python-version: "3.12"
omp: n
mpi: n
- python-version: "3.13"
omp: n
mpi: n
- dagmc: y
python-version: "3.10"
python-version: "3.11"
mpi: y
omp: y
- ncrystal: y
python-version: "3.10"
python-version: "3.11"
mpi: n
omp: n
- libmesh: y
python-version: "3.10"
python-version: "3.11"
mpi: y
omp: y
- libmesh: y
python-version: "3.10"
python-version: "3.11"
mpi: n
omp: y
- event: y
python-version: "3.10"
python-version: "3.11"
omp: y
mpi: n
- vectfit: y
python-version: "3.10"
python-version: "3.11"
omp: n
mpi: y
name: "Python ${{ matrix.python-version }} (omp=${{ matrix.omp }},

View file

@ -3,7 +3,7 @@ version: 2
build:
os: "ubuntu-20.04"
tools:
python: "3.10"
python: "3.12"
sphinx:
configuration: docs/source/conf.py

View file

@ -9,7 +9,7 @@ authors = [
]
description = "OpenMC"
version = "0.15.1-dev"
requires-python = ">=3.10"
requires-python = ">=3.11"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
@ -21,9 +21,9 @@ classifiers = [
"Topic :: Scientific/Engineering",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy",