Skip to content

Commit

Permalink
Drop Python 3.7 / Set numpy >= 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
tbonald committed Jan 6, 2023
1 parent 9e48743 commit 2183bb5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 2183bb5

Please sign in to comment.