Skip to content

Commit ff32478

Browse files
committed
add python 3.9 jobs
Signed-off-by: oleg.hoefling <[email protected]>
1 parent 18cbae1 commit ff32478

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ environment:
1010
- python: 37-x64
1111
- python: 38
1212
- python: 38-x64
13+
- python: 39
14+
- python: 39-x64
1315

1416
install:
1517
- SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%

.github/workflows/macosx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: macos-latest
66
strategy:
77
matrix:
8-
python: [2.7, 3.5, 3.6, 3.7, 3.8]
8+
python: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
99
steps:
1010
- uses: actions/checkout@v1
1111
- name: Setup Python

.github/workflows/manylinux2010.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
container: quay.io/pypa/manylinux2010_x86_64
77
strategy:
88
matrix:
9-
python-abi: [cp27-cp27m, cp27-cp27mu, cp35-cp35m, cp36-cp36m, cp37-cp37m, cp38-cp38]
9+
python-abi: [cp27-cp27m, cp27-cp27mu, cp35-cp35m, cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39]
1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: Install build dependencies

.github/workflows/sdist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v1
8-
- name: Set up Python 3.8
8+
- name: Set up Python 3.9
99
uses: actions/setup-python@v2
1010
with:
11-
python-version: 3.8
11+
python-version: 3.9
1212
- name: Install build dependencies
1313
run: |
1414
pip install --upgrade pip setuptools wheel

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ matrix:
1414
- python: 3.8
1515
dist: xenial
1616
sudo: required
17-
- python: 3.9-dev
17+
- python: 3.9
1818
dist: xenial
1919
sudo: required
2020
env:

0 commit comments

Comments
 (0)