Skip to content

Commit 429fa5d

Browse files
committed
Add test jobs for Python 3.9.
Stop deployment of non-ABI3 wheels on Windows.
1 parent 3c37c59 commit 429fa5d

2 files changed

Lines changed: 12 additions & 8 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
python: 3.7
1010
- os: linux
1111
python: 3.8
12+
- os: linux
13+
python: 3.9
1214
- os: linux
1315
python: nightly
1416
- os: osx

appveyor.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
image: Visual Studio 2019
2+
13
environment:
24
TWINE_USERNAME:
35
secure: sUo+lYht329nQC5JCxEB8w==
@@ -16,16 +18,16 @@ environment:
1618
EXTRA_SETUP_ARGS: "--py-limited-api cp35"
1719
- PYTHON: C:\Python36-x64\python.exe
1820
platform: x64
19-
- PYTHON: C:\Python36\python.exe
20-
platform: Any CPU
21+
NO_DEPLOY: true
2122
- PYTHON: C:\Python37-x64\python.exe
2223
platform: x64
23-
- PYTHON: C:\Python37\python.exe
24-
platform: Any CPU
24+
NO_DEPLOY: true
2525
- PYTHON: C:\Python38-x64\python.exe
2626
platform: x64
27-
- PYTHON: C:\Python38\python.exe
28-
platform: Any CPU
27+
NO_DEPLOY: true
28+
- PYTHON: C:\Python39-x64\python.exe
29+
platform: x64
30+
NO_DEPLOY: true
2931
- PYPY3: pypy3.6-v7.3.2
3032
platform: Any CPU
3133
- PYPY3: pypy3.7-v7.3.2
@@ -61,5 +63,5 @@ on_success:
6163
- if defined CODACY_PROJECT_TOKEN python-codacy-coverage -r coverage.xml || cd .
6264

6365
deploy_script:
64-
- "if defined APPVEYOR_REPO_TAG_NAME pip install twine"
65-
- "if defined APPVEYOR_REPO_TAG_NAME twine upload --skip-existing dist/*"
66+
- "if defined APPVEYOR_REPO_TAG_NAME if not defined NO_DEPLOY pip install twine"
67+
- "if defined APPVEYOR_REPO_TAG_NAME if not defined NO_DEPLOY twine upload --skip-existing dist/*"

0 commit comments

Comments
 (0)