Skip to content

Commit 33112c8

Browse files
committed
remove py3.6 support and add py3.9 and py3.10
1 parent f292456 commit 33112c8

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

appveyor-integration-test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ image: Ubuntu
33

44
environment:
55
matrix:
6-
- TOXENV: py36
7-
PYTHON_VERSION: '3.6'
86
- TOXENV: py37
97
PYTHON_VERSION: '3.7'
108
- TOXENV: py38
119
PYTHON_VERSION: '3.8'
10+
- TOXENV: py39
11+
PYTHON_VERSION: '3.9'
12+
- TOXENV: py310
13+
PYTHON_VERSION: '3.10'
1214

1315
build: off
1416

appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ image: Ubuntu
33

44
environment:
55
matrix:
6-
- TOXENV: py36
7-
PYTHON_VERSION: '3.6'
86
- TOXENV: py37
97
PYTHON_VERSION: '3.7'
108
- TOXENV: py38
119
PYTHON_VERSION: '3.8'
10+
- TOXENV: py39
11+
PYTHON_VERSION: '3.9'
12+
- TOXENV: py310
13+
PYTHON_VERSION: '3.10'
1214

1315
build: off
1416

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ def read_requirements(req="base.txt"):
6666
"NOTICE",
6767
"THIRD_PARTY_LICENSES",
6868
),
69+
python_requires=">=3.7, <=4.0, !=4.0",
6970
install_requires=read_requirements("base.txt"),
7071
include_package_data=True,
7172
extras_require={"dev": read_requirements("dev.txt")},
@@ -79,9 +80,10 @@ def read_requirements(req="base.txt"):
7980
"License :: OSI Approved :: Apache Software License",
8081
"Operating System :: OS Independent",
8182
"Programming Language :: Python",
82-
"Programming Language :: Python :: 3.6",
8383
"Programming Language :: Python :: 3.7",
8484
"Programming Language :: Python :: 3.8",
85+
"Programming Language :: Python :: 3.9",
86+
"Programming Language :: Python :: 3.10",
8587
"Topic :: Internet",
8688
"Topic :: Software Development :: Build Tools",
8789
"Topic :: Utilities",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py36, py37, py38
7+
envlist = py37, py38, py39, py310
88

99
[testenv]
1010
commands = make pr

0 commit comments

Comments
 (0)