Skip to content

Commit effa4a4

Browse files
committed
chore: remove Python 3.7 from CI
EOL since 2023-06-27 https://devguide.python.org/versions/
1 parent 6055185 commit effa4a4

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1212
os: [ubuntu-latest, windows-latest]
1313
exclude:
14-
- os: windows-latest
15-
python-version: "3.7"
1614
- os: windows-latest
1715
python-version: "3.8"
1816
- os: windows-latest

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,10 @@
7171
"Development Status :: 3 - Alpha",
7272
"Intended Audience :: Developers",
7373
"Topic :: Software Development :: Libraries",
74-
"Programming Language :: Python :: 3.6",
75-
"Programming Language :: Python :: 3.7",
7674
"Programming Language :: Python :: 3.8",
7775
"Programming Language :: Python :: 3.9",
7876
"Programming Language :: Python :: 3.10",
77+
"Programming Language :: Python :: 3.11",
7978
"License :: OSI Approved :: MIT License",
8079
],
8180
keywords="api graphql protocol rest",

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
[tox]
22
envlist =
33
black,flake8,import-order,mypy,manifest,
4-
py{37,38,39,310,311}
4+
py{38,39,310,311}
55
; requires = tox-conda
66

77
[gh-actions]
88
python =
9-
3.7: py37
109
3.8: py38
1110
3.9: py39
1211
3.10: py310
@@ -23,7 +22,7 @@ whitelist_externals =
2322
python
2423
commands =
2524
pip install -U setuptools
26-
py{37,38,39,311}: pytest tests {posargs}
25+
py{38,39,311}: pytest tests {posargs}
2726
py{310}: pytest tests --cov-report=term-missing --cov=graphql_server {posargs}
2827

2928
[testenv:black]

0 commit comments

Comments
 (0)