Skip to content

Commit a6edfc2

Browse files
committed
Add support for Python 3.7-3.9
1 parent 75b0d0f commit a6edfc2

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

appveyor.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# AppVeyor.com is a Continuous Integration service to build and run tests under
22
# Windows
33

4+
image: Visual Studio 2019
5+
46
environment:
57
matrix:
68
- PYTHON: "C:\\Python27"
@@ -11,6 +13,12 @@ environment:
1113
- PYTHON: "C:\\Python35-x64"
1214
- PYTHON: "C:\\Python36"
1315
- PYTHON: "C:\\Python36-x64"
16+
- PYTHON: "C:\\Python37"
17+
- PYTHON: "C:\\Python37-x64"
18+
- PYTHON: "C:\\Python38"
19+
- PYTHON: "C:\\Python38-x64"
20+
- PYTHON: "C:\\Python39"
21+
- PYTHON: "C:\\Python39-x64"
1422

1523
install:
1624
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
'Programming Language :: Python :: 3.4',
1919
'Programming Language :: Python :: 3.5',
2020
'Programming Language :: Python :: 3.6',
21+
'Programming Language :: Python :: 3.7',
22+
'Programming Language :: Python :: 3.8',
23+
'Programming Language :: Python :: 3.9',
2124
],
2225
keywords='cycle kwargs',
2326
)

0 commit comments

Comments
 (0)