Skip to content

Commit 6096df0

Browse files
authored
Merge pull request #278 from optimas-org/use_python_312
Run all tests with Python 3.12
2 parents 938478c + edd93a2 commit 6096df0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/unix-openmpi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.10', 3.11]
14+
python-version: ['3.10', 3.11, 3.12]
1515

1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/unix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.10', 3.11]
14+
python-version: ['3.10', 3.11, 3.12]
1515

1616
steps:
1717
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
'Operating System :: OS Independent',
2020
'Programming Language :: Python :: 3.10',
2121
'Programming Language :: Python :: 3.11',
22+
'Programming Language :: Python :: 3.12',
2223
]
2324
dependencies = [
2425
'libensemble >= 1.3.0',
@@ -56,7 +57,7 @@ include = [
5657

5758
[tool.black]
5859
line-length = 80
59-
target-version = ['py39', 'py310', 'py311']
60+
target-version = ['py310', 'py311', 'py312']
6061

6162
[tool.pydocstyle]
6263
convention = "numpy"

0 commit comments

Comments
 (0)