Skip to content

Commit

Permalink
Drop python 3.8
Browse files Browse the repository at this point in the history
While it is still supported by PSF, it is deprecated by numpy's policy,
which is a community standard among scientific packages.
  • Loading branch information
clbarnes committed Nov 14, 2023
1 parent 879236c commit 46e2f76
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
igraph: ["igraph", "no-igraph"]
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,12 @@
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',

'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=requirements,
extras_require={'extras': ['fuzzywuzzy[speedup]~=0.17.0',
'ujson~=1.35']},
python_requires='>=3.8',
python_requires='>=3.9',
zip_safe=False
)

0 comments on commit 46e2f76

Please sign in to comment.