Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
santisoler committed Mar 22, 2024
1 parent 98832ff commit 38a14e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python: ["3.7", "3.10"]
python: ["3.8", "3.10"]
include:
- python: "3.7"
- python: "3.8"
dependencies: oldest
- python: "3.10"
dependencies: latest
Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Installing
Which Python?
-------------

You'll need **Python 3.7 or greater**.
You'll need **Python 3.8 or greater**.
See :ref:`python-versions` if you require support for older versions.

We recommend using the
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ classifiers =
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -37,7 +36,7 @@ project_urls =
[options]
zip_safe = True
packages = find:
python_requires = >=3.7
python_requires = >=3.8
install_requires =
numpy>=1.19
numba>=0.52
Expand Down

0 comments on commit 38a14e6

Please sign in to comment.