Skip to content

Commit

Permalink
Drop support for python 3.7, which is now EOL.
Browse files Browse the repository at this point in the history
  • Loading branch information
TkTech committed Jun 19, 2024
1 parent 1fac1f9 commit ac5a450
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ on:
release:
types:
- published
workflow_dispatch:

name: Create release

Expand Down Expand Up @@ -50,7 +49,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
py: ["cp37", "cp38", "cp39", "cp310", "cp311", "cp312", "pp37", "pp38", "pp39", "pp310"]
py: ["cp38", "cp39", "cp310", "cp311", "cp312", "pp38", "pp39", "pp310"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
],
python_requires=">3.4",
python_requires=">=3.8",
extras_require={
# Dependencies for running tests.
"test": ["pytest"],
Expand Down

0 comments on commit ac5a450

Please sign in to comment.