From 8aaf2506571bd6a756dfc9c52c9e8cafdae2125e Mon Sep 17 00:00:00 2001 From: Thomas Bonald Date: Mon, 2 Jan 2023 08:51:51 +0100 Subject: [PATCH 1/4] Bump wheel from 0.37.1 to 0. 38.1 --- requirements_dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_dev.txt b/requirements_dev.txt index 15ca37e9..281caab9 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -9,7 +9,7 @@ scipy>=1.7.3 bumpversion==0.6.0 # build wheels for the package -wheel==0.37.1 +wheel==0.38.1 # standard package to produce coverage from test runs coverage>=6.2 From 9e4874394d1f4f26a0ccd91f9b62439ea307beac Mon Sep 17 00:00:00 2001 From: Thomas Bonald Date: Fri, 6 Jan 2023 08:27:11 +0100 Subject: [PATCH 2/4] Drop Python 3.7 --- .github/workflows/ci_checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_checks.yml b/.github/workflows/ci_checks.yml index 45091776..5b8c3fea 100644 --- a/.github/workflows/ci_checks.yml +++ b/.github/workflows/ci_checks.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 From 2183bb5abda4433f0cd21312c496d63ec4c9395b Mon Sep 17 00:00:00 2001 From: Thomas Bonald Date: Fri, 6 Jan 2023 08:33:16 +0100 Subject: [PATCH 3/4] Drop Python 3.7 / Set numpy >= 1.22 --- requirements_dev.txt | 2 +- setup.cfg | 2 +- setup.py | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/requirements_dev.txt b/requirements_dev.txt index 281caab9..96676e96 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -2,7 +2,7 @@ pip>=21.3.1 # base dependencies -numpy>=1.21.0 +numpy>=1.22.0 scipy>=1.7.3 # tool to automatically change version number in the package upon release diff --git a/setup.cfg b/setup.cfg index c4583b68..d2f100c5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,4 +21,4 @@ test = pytest collect_ignore = ['setup.py'] [options] -python_requires = >=3.7 +python_requires = >=3.8 diff --git a/setup.py b/setup.py index f0cc610e..9d2f7232 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ with open('HISTORY.rst') as history_file: history = history_file.read() -requirements = ['numpy>=1.21.0', 'scipy>=1.7.3'] +requirements = ['numpy>=1.22.0', 'scipy>=1.7.3'] setup_requirements = ['pytest-runner'] @@ -128,7 +128,6 @@ def finalize_options(self): 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Programming Language :: Cython', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10' From 61e6d0fbe48d28fb5d6e4c6801312acd38605358 Mon Sep 17 00:00:00 2001 From: Thomas Bonald Date: Fri, 6 Jan 2023 08:39:48 +0100 Subject: [PATCH 4/4] Update history for release 0.28.3 --- HISTORY.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 304a4819..a973d4ef 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,12 @@ History ======= +0.28.3 (2023-01-06) +------------------- + +* Drop Python 3.7 +* Update Numpy requirement + 0.28.2 (2022-11-30) -------------------