Skip to content

Commit 09e195a

Browse files
committed
use python 3.14 everywhere, minimum 3.12
1 parent 1292091 commit 09e195a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
platform: [windows-latest, macos-latest, ubuntu-latest]
15-
python-version: ["3.11", "3.14"]
15+
python-version: ["3.12", "3.x"]
1616
runs-on: ${{ matrix.platform }}
1717

1818
steps:
@@ -55,4 +55,4 @@ jobs:
5555
with:
5656
token: ${{ secrets.CODECOV_TOKEN }}
5757
files: ./coverage.xml
58-
if: matrix.platform == 'ubuntu-latest'
58+
if: matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.x'

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up python
2020
uses: actions/setup-python@v6
2121
with:
22-
python-version: 3.13
22+
python-version: 3.x
2323

2424
- name: Install dependencies / build sdist
2525
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99
name = "petab"
1010
dynamic = ["version", "readme"]
1111
description = "Parameter estimation tabular data"
12-
requires-python = ">=3.11"
12+
requires-python = ">=3.12"
1313
dependencies = [
1414
"numpy>=1.15.1",
1515
"pandas>=1.2.0",

0 commit comments

Comments
 (0)