Skip to content

Commit

Permalink
Drop support for Python 3.7 (#188)
Browse files Browse the repository at this point in the history
It's long overdue and we no longer need to support it. Upgrade the
project setting, CI matrix, and version compatibility docs.
  • Loading branch information
leouieda committed Apr 16, 2024
1 parent 4439efb commit d47f9a9
Show file tree
Hide file tree
Showing 4 changed files with 6 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.11"]
python: ["3.8", "3.11"]
include:
- python: "3.7"
- python: "3.8"
dependencies: oldest
- python: "3.11"
dependencies: latest
Expand Down
2 changes: 2 additions & 0 deletions doc/compatibility.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,5 @@ following releases to ensure compatibility:
- **Last compatible release**
* - 3.6
- 0.4.0
* - 3.7
- 0.4.1
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ There are different ways to install Boule:
Which Python?
-------------

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

Dependencies
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"numpy>=1.19",
"attrs>=19.3.0",
Expand Down

0 comments on commit d47f9a9

Please sign in to comment.