forked from AMICI-dev/AMICI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop python3.9 support (AMICI-dev#2391)
NEP 29: > On Apr 05, 2024 drop support for Python 3.9
- Loading branch information
Showing
20 changed files
with
126 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
python-version: [3.9] | ||
python-version: ["3.11"] | ||
|
||
environment: | ||
name: pypi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
[metadata] | ||
name = amici | ||
description = Advanced multi-language Interface to CVODES and IDAS | ||
version = file: amici/version.txt | ||
license = BSD 3-Clause License | ||
url = https://github.com/AMICI-dev/AMICI | ||
keywords = differential equations, simulation, ode, cvodes, systems biology, sensitivity analysis, sbml, pysb, petab | ||
author = Fabian Froehlich, Jan Hasenauer, Daniel Weindl and Paul Stapor | ||
author_email = [email protected] | ||
project_urls = | ||
Bug Reports = https://github.com/AMICI-dev/AMICI/issues | ||
Source = https://github.com/AMICI-dev/AMICI | ||
Documentation = https://amici.readthedocs.io/en/latest/ | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: BSD License | ||
Operating System :: POSIX :: Linux | ||
Operating System :: MacOS :: MacOS X | ||
Programming Language :: Python | ||
Programming Language :: C++ | ||
Topic :: Scientific/Engineering :: Bio-Informatics | ||
|
||
[options] | ||
packages = find_namespace: | ||
package_dir = | ||
amici = amici | ||
python_requires = >=3.10 | ||
install_requires = | ||
cmake-build-extension==0.5.1 | ||
sympy>=1.9 | ||
numpy>=1.21.4; python_version>='3.10' | ||
numpy>=1.23.2; python_version=='3.11' | ||
numpy>=1.26.2; python_version=='3.12' | ||
numpy; python_version>='3.13' | ||
python-libsbml | ||
pandas>=2.0.2 | ||
pyarrow | ||
wurlitzer | ||
toposort | ||
setuptools>=48 | ||
mpmath | ||
include_package_data = True | ||
zip_safe = False | ||
|
||
[options.extras_require] | ||
# Don't include any URLs here - they are not supported by PyPI: | ||
# HTTPError: 400 Bad Request from https://upload.pypi.org/legacy/ | ||
# Invalid value for requires_dist. Error: Can't have direct dependency: ... | ||
petab = petab>=0.2.9 | ||
pysb = pysb>=1.13.1 | ||
test = | ||
benchmark_models_petab @ git+https://github.com/Benchmarking-Initiative/Benchmark-Models-PEtab.git@master#subdirectory=src/python | ||
h5py | ||
pytest | ||
pytest-cov | ||
pytest-rerunfailures | ||
coverage | ||
shyaml | ||
antimony>=2.13 | ||
# see https://github.com/sys-bio/antimony/issues/92 | ||
# unsupported x86_64 / x86_64h | ||
antimony!=2.14; platform_system=='Darwin' and platform_machine in 'x86_64h' | ||
scipy | ||
pooch | ||
vis = | ||
matplotlib | ||
seaborn | ||
examples = | ||
jupyter | ||
scipy | ||
|
||
[options.package_data] | ||
amici = | ||
amici/include/amici/* | ||
src/*template* | ||
swig/* | ||
libs/* | ||
setup.py.template | ||
|
||
[options.exclude_package_data] | ||
* = | ||
README.txt | ||
|
||
|
||
[options.entry_points] | ||
|
||
; amici_import_petab.py is kept for backwards compatibility | ||
console_scripts = | ||
amici_import_petab = amici.petab.cli.import_petab:_main | ||
amici_import_petab.py = amici.petab.cli.import_petab:_main |