Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
tbonald committed Jan 6, 2023
2 parents 6f00722 + 61e6d0f commit a702e20
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======

0.28.3 (2023-01-06)
-------------------

* Drop Python 3.7
* Update Numpy requirement

0.28.2 (2022-11-30)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
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
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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ test = pytest
collect_ignore = ['setup.py']

[options]
python_requires = >=3.7
python_requires = >=3.8
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit a702e20

Please sign in to comment.