Skip to content

Commit 021135a

Browse files
committed
Require Python>=3.11 per nep-0029
1 parent 5429412 commit 021135a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci_tests.yml

Lines changed: 1 addition & 1 deletion
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.10", "3.13"]
15+
python-version: ["3.11", "3.13"]
1616
runs-on: ${{ matrix.platform }}
1717

1818
steps:

.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.11
22+
python-version: 3.13
2323

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

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ sphinx:
88
fail_on_warning: false
99

1010
build:
11-
os: "ubuntu-22.04"
11+
os: "ubuntu-24.04"
1212
tools:
13-
python: "3.10"
13+
python: "3.12"
1414

1515
python:
1616
install:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Documentation of the PEtab format in general is available at
1717

1818
## Installation
1919

20-
The PEtab library is available on [pypi](https://pypi.org/project/petab/)
20+
The PEtab library is available on [PyPI](https://pypi.org/project/petab/)
2121
and the easiest way to install it is running
2222

2323
pip3 install petab
2424

25-
It will require Python>=3.10 to run. (We are following the
26-
[numpy Python support policy](https://numpy.org/neps/nep-0029-deprecation_policy.html)).
25+
`petab` requires Python>=3.11. We are following
26+
[NumPy's Python support policy](https://numpy.org/neps/nep-0029-deprecation_policy.html).
2727

2828
Development versions of the PEtab library can be installed using
2929

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.10"
12+
requires-python = ">=3.11"
1313
dependencies = [
1414
"numpy>=1.15.1",
1515
"pandas>=1.2.0",

0 commit comments

Comments
 (0)