Skip to content

Commit 10ef8e8

Browse files
authored
build(python39): add py39 to supported versions (#87)
1 parent e2290ef commit 10ef8e8

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/publish-to-pypi.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest, macos-latest]
1515
bitness: [32, 64]
16-
python: [36, 37, 38]
16+
python: [36, 37, 38, 39]
1717
include:
1818
# Run 32 and 64 bit version in parallel for Linux and Windows
1919
- os: windows-latest
@@ -34,6 +34,8 @@ jobs:
3434
exclude:
3535
- os: macos-latest
3636
bitness: 32
37+
- os: windows-latest
38+
python: 39
3739

3840
steps:
3941
- uses: actions/checkout@v2

.github/workflows/run-test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ jobs:
1313
build:
1414
strategy:
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8]
16+
python-version: [3.6, 3.7, 3.8, 3.9]
1717
os: [ubuntu-latest, windows-latest, macos-latest]
18+
exclude:
19+
- os: windows-latest
20+
python-version: 3.9
1821

1922
runs-on: ${{ matrix.os }}
2023

0 commit comments

Comments
 (0)