Skip to content

Commit ac5a450

Browse files
committed
Drop support for python 3.7, which is now EOL.
1 parent 1fac1f9 commit ac5a450

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/release.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ on:
22
release:
33
types:
44
- published
5-
workflow_dispatch:
65

76
name: Create release
87

@@ -50,7 +49,7 @@ jobs:
5049
fail-fast: true
5150
matrix:
5251
os: [ubuntu-20.04, windows-2019, macos-11]
53-
py: ["cp37", "cp38", "cp39", "cp310", "cp311", "cp312", "pp37", "pp38", "pp39", "pp310"]
52+
py: ["cp38", "cp39", "cp310", "cp311", "cp312", "pp38", "pp39", "pp310"]
5453

5554
steps:
5655
- uses: actions/checkout@v3

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest, macos-latest, windows-latest]
18-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
18+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
1919

2020
steps:
2121
- uses: actions/checkout@v3

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"Development Status :: 3 - Alpha",
2828
"Intended Audience :: Developers",
2929
],
30-
python_requires=">3.4",
30+
python_requires=">=3.8",
3131
extras_require={
3232
# Dependencies for running tests.
3333
"test": ["pytest"],

0 commit comments

Comments
 (0)