Skip to content

Commit

Permalink
End support for Python 3.7
Browse files Browse the repository at this point in the history
Python 3.8 was put at the end of life on 2023-06-27 [1], so we should
also stop supporting this version.

[1] https://devguide.python.org/versions/
  • Loading branch information
yakutovicha committed Aug 27, 2024
1 parent 6f741fc commit a3405af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- name: Check out repository
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"matplotlib",
"numpy",
Expand Down

0 comments on commit a3405af

Please sign in to comment.