Skip to content

Commit 4320b62

Browse files
committed
Support Python 3.9
1 parent 0baceab commit 4320b62

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ matrix:
66
python: 3.8
77
dist: xenial
88
sudo: true
9+
- name: Unit tests with Python 3.9
10+
env: TOXENV=py39
11+
python: 3.9
12+
dist: xenial
13+
sudo: true
914
- name: Unit tests with Python 3.8
1015
env: TOXENV=py38
1116
python: 3.8

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ classifiers = [
2121
"Programming Language :: Python :: 3",
2222
"Programming Language :: Python :: 3.6",
2323
"Programming Language :: Python :: 3.7",
24-
"Programming Language :: Python :: 3.8"
24+
"Programming Language :: Python :: 3.8",
25+
"Programming Language :: Python :: 3.9"
2526
]
2627
packages = [
2728
{ include = "graphql_relay", from = "src" },

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"Programming Language :: Python :: 3.6",
2828
"Programming Language :: Python :: 3.7",
2929
"Programming Language :: Python :: 3.8",
30+
"Programming Language :: Python :: 3.9",
3031
"Programming Language :: Python :: Implementation :: PyPy",
3132
],
3233
install_requires=[

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38}, black, flake8, mypy, manifest
2+
envlist = py{36,37,38,39}, black, flake8, mypy, manifest
33

44
[testenv:black]
55
basepython = python3.8

0 commit comments

Comments
 (0)