diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 45376f16..bba5804c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -34,7 +34,7 @@ jobs: - python-version: "3.8" name: minimal os: ubuntu - conda: "'numpy=1.17' 'scipy=1.4' 'numba=0.47'" + conda: "'numpy=1.19' 'scipy=1.5' 'numba=0.50'" test: "" - python-version: "3.9" name: plain diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fff090ba..a9658e0a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -24,6 +24,13 @@ latest - Adjust copyright notice to only include original year, so it has not to be adjusted each year. +- Bumped the minimum requirements to: + + - Python 3.8 + - NumPy 1.19 + - SciPy 1.5 + - Numba 0.50 + v2.2.1: Minimum offset ---------------------- diff --git a/setup.py b/setup.py index b61482dc..b9329c0c 100644 --- a/setup.py +++ b/setup.py @@ -38,8 +38,8 @@ }, python_requires=">=3.8", install_requires=[ - "scipy>=1.4", - "numba>=0.47", + "scipy>=1.5", + "numba>=0.50", ], use_scm_version={ "root": ".",