Skip to content

Commit 5db1af0

Browse files
authored
Remove Python 3.7 (#1543)
* CI: add Python 3.12 * dd * remove python 3.12
1 parent 82d0a68 commit 5db1af0

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}
3030
- {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39}
3131
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
32-
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
3332
steps:
3433
- uses: actions/checkout@v4
3534
- uses: actions/setup-python@v5

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ file:
141141

142142
.. code:: sh
143143
144-
tox -e py36
144+
tox -e py10
145145
146146
Tox can only use whatever versions of Python are installed on your
147147
system. When you create a pull request, Travis will also be running the

docs/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ When we send a **Query** requesting only one **Field**, ``hello``, and specify a
5959
Requirements
6060
~~~~~~~~~~~~
6161

62-
- Python (3.6, 3.7, 3.8, 3.9, 3.10, pypy)
62+
- Python (3.8, 3.9, 3.10, 3.11, pypy)
6363
- Graphene (3.0)
6464

6565
Project setup

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,10 @@ def run_tests(self):
7373
"Development Status :: 3 - Alpha",
7474
"Intended Audience :: Developers",
7575
"Topic :: Software Development :: Libraries",
76-
"Programming Language :: Python :: 3.6",
77-
"Programming Language :: Python :: 3.7",
7876
"Programming Language :: Python :: 3.8",
7977
"Programming Language :: Python :: 3.9",
8078
"Programming Language :: Python :: 3.10",
79+
"Programming Language :: Python :: 3.11",
8180
],
8281
keywords="api graphql protocol rest relay graphene",
8382
packages=find_packages(exclude=["examples*"]),

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{7,8,9,10,11}, mypy, pre-commit
2+
envlist = py3{8,9,10,11}, mypy, pre-commit
33
skipsdist = true
44

55
[testenv]
@@ -8,7 +8,7 @@ deps =
88
setenv =
99
PYTHONPATH = .:{envdir}
1010
commands =
11-
py{37,38,39,310,311}: pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs}
11+
py{38,39,310,311}: pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs}
1212

1313
[testenv:pre-commit]
1414
basepython = python3.10

0 commit comments

Comments
 (0)