Skip to content

Commit 597fc28

Browse files
committed
Support Python 3.9
1 parent 26a1c2c commit 597fc28

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ matrix:
44
- name: Code quality tests
55
env: TOXENV=black,flake8,mypy,docs,manifest
66
python: 3.8
7+
- name: Unit tests with Python 3.9
8+
env: TOXENV=py38
9+
python: 3.8
710
- name: Unit tests with Python 3.8
811
env: TOXENV=py38
912
python: 3.8

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ classifiers = [
2020
"Programming Language :: Python :: 3",
2121
"Programming Language :: Python :: 3.6",
2222
"Programming Language :: Python :: 3.7",
23-
"Programming Language :: Python :: 3.8"
23+
"Programming Language :: Python :: 3.8",
24+
"Programming Language :: Python :: 3.9"
2425
]
2526
packages = [
2627
{ include = "graphql", from = "src" },

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"Programming Language :: Python :: 3.6",
2929
"Programming Language :: Python :: 3.7",
3030
"Programming Language :: Python :: 3.8",
31+
"Programming Language :: Python :: 3.9",
3132
],
3233
install_requires=[],
3334
python_requires=">=3.6,<4",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38}, black, flake8, mypy, docs, manifest
2+
envlist = py{36,37,38,39}, black, flake8, mypy, docs, manifest
33
isolated_build = true
44

55
[testenv:black]

0 commit comments

Comments
 (0)