Skip to content

Commit 7763665

Browse files
committed
Enabling Python 3.9 tests on GitHub Actions.
1 parent ae0289c commit 7763665

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/python_ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ name: Windows Tests
44

55
on:
66
push:
7-
branches: ["master"]
87
pull_request:
98
branches: ["master"]
109

@@ -13,19 +12,19 @@ jobs:
1312
name: "Python ${{ matrix.python-version }}"
1413
runs-on: "windows-2019"
1514
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,pypy3'
15+
USING_COVERAGE: '3.6,3.7,3.8,pypy3,3.9-dev'
1716

1817
strategy:
1918
fail-fast: False
2019
matrix:
21-
python-version: ["3.6","3.7","3.8","pypy3"]
20+
python-version: ["3.6","3.7","3.8","pypy3","3.9-dev"]
2221

2322

2423
steps:
2524
- name: Checkout 🛎️
2625
uses: "actions/checkout@v2"
2726
- name: Setup Python 🐍
28-
uses: "actions/setup-python@v1"
27+
uses: "actions/setup-python@v2"
2928
with:
3029
python-version: "${{ matrix.python-version }}"
3130
- name: Install dependencies 🔧

.github/workflows/python_ci_macos.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ name: macOS Tests
44

55
on:
66
push:
7-
branches: ["master"]
87
pull_request:
98
branches: ["master"]
109

@@ -13,19 +12,19 @@ jobs:
1312
name: "Python ${{ matrix.python-version }}"
1413
runs-on: "macos-latest"
1514
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,pypy3'
15+
USING_COVERAGE: '3.6,3.7,3.8,pypy3,3.9-dev'
1716

1817
strategy:
1918
fail-fast: False
2019
matrix:
21-
python-version: ["3.6","3.7","3.8","pypy3"]
20+
python-version: ["3.6","3.7","3.8","pypy3","3.9-dev"]
2221

2322

2423
steps:
2524
- name: Checkout 🛎️
2625
uses: "actions/checkout@v2"
2726
- name: Setup Python 🐍
28-
uses: "actions/setup-python@v1"
27+
uses: "actions/setup-python@v2"
2928
with:
3029
python-version: "${{ matrix.python-version }}"
3130
- name: Install dependencies 🔧

0 commit comments

Comments
 (0)