Skip to content

Commit 1aa02bb

Browse files
authored
1 parent 61ef4d7 commit 1aa02bb

File tree

8 files changed

+6
-9
lines changed

8 files changed

+6
-9
lines changed

.github/workflows/test_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.10", "3.11", "3.12"]
14+
python-version: ["3.11", "3.12", "3.13"]
1515
os: [ubuntu-24.04, macos-latest]
1616

1717
runs-on: ${{ matrix.os }}

.github/workflows/test_python_ver_matrix.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
include:
29-
- python-version: '3.10'
30-
experimental: false
3129
- python-version: '3.11'
3230
experimental: false
3331
- python-version: '3.12'

doc/MATLAB_.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ from within Matlab. This not quite comfortable yet, but it is possible.
191191
Here for proof of concept:
192192

193193
* Install the python package as described in the documentation
194-
* Ensure `pyversion` shows the correct python version (>= 3.10)
194+
* Ensure `pyversion` shows the correct python version (>= 3.11)
195195
* Then, from within the AMICI `matlab/` directory:
196196

197197
```

doc/gfx/amici_workflow.png

3.64 KB
Loading

doc/gfx/amici_workflow.svg

Lines changed: 1 addition & 1 deletion
Loading

doc/python_installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Short guide
88

99
Installation of the AMICI Python package has the following prerequisites:
1010

11-
* Python>=3.10
11+
* Python>=3.11
1212
* :term:`SWIG`>=4.1
1313
* CBLAS compatible BLAS library
1414
(e.g., OpenBLAS, CBLAS, Atlas, Accelerate, Intel MKL)

python/sdist/amici/setup.template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def get_extension() -> CMakeExtension:
7575
ext_modules=[MODEL_EXT],
7676
packages=find_namespace_packages(),
7777
install_requires=["amici==TPL_AMICI_VERSION"],
78-
python_requires=">=3.10",
78+
python_requires=">=3.11",
7979
package_data={},
8080
zip_safe=False,
8181
classifiers=CLASSIFIERS,

python/sdist/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ build-backend = "setuptools.build_meta"
1313
name = "amici"
1414
dynamic = ["version"]
1515
description = "Advanced multi-language Interface to CVODES and IDAS"
16-
requires-python = ">=3.10"
16+
requires-python = ">=3.11"
1717
dependencies = [
1818
"cmake-build-extension==0.6.0",
1919
"sympy>=1.12.1",
20-
"numpy>=1.21.4; python_version>='3.10'",
2120
"numpy>=1.23.2; python_version=='3.11'",
2221
"numpy>=1.26.2; python_version=='3.12'",
2322
"numpy; python_version>='3.13'",

0 commit comments

Comments
 (0)