Skip to content

Commit d9788dd

Browse files
authored
chore: stable Python 3.9 support (#160)
* chore: stable Python 3.9 support * chore: add conda-forge to channels
1 parent c7765c7 commit d9788dd

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9-dev", "pypy3"]
11+
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy3"]
1212
os: [ubuntu-latest, windows-latest]
1313
exclude:
1414
- os: windows-latest
1515
python-version: "3.6"
1616
- os: windows-latest
1717
python-version: "3.7"
1818
- os: windows-latest
19-
python-version: "3.9-dev"
19+
python-version: "3.9"
2020
- os: windows-latest
2121
python-version: "pypy3"
2222

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"Programming Language :: Python :: 3.6",
5959
"Programming Language :: Python :: 3.7",
6060
"Programming Language :: Python :: 3.8",
61+
"Programming Language :: Python :: 3.9",
6162
"Programming Language :: Python :: Implementation :: PyPy",
6263
],
6364
keywords="api graphql protocol rest relay gql client",

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
black,flake8,import-order,mypy,manifest,
4-
py{36,37,38,39-dev,py3}
4+
py{36,37,38,39,py3}
55

66
[pytest]
77
markers = asyncio
@@ -11,10 +11,11 @@ python =
1111
3.6: py36
1212
3.7: py37
1313
3.8: py38
14-
3.9: py39-dev
14+
3.9: py39
1515
pypy3: pypy3
1616

1717
[testenv]
18+
conda_channels = conda-forge
1819
passenv = *
1920
setenv =
2021
PYTHONPATH = {toxinidir}
@@ -28,7 +29,7 @@ deps = -e.[test]
2829
commands =
2930
pip install -U setuptools
3031
; run "tox -- tests -s" to show output for debugging
31-
py{36,37,39-dev,py3}: pytest {posargs:tests}
32+
py{36,37,39,py3}: pytest {posargs:tests}
3233
py{38}: pytest {posargs:tests --cov-report=term-missing --cov=gql}
3334

3435
[testenv:black]

0 commit comments

Comments
 (0)