Skip to content

Commit

Permalink
build(python39): add py39 to supported versions (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
oboulant authored Dec 2, 2020
1 parent e2290ef commit 10ef8e8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
bitness: [32, 64]
python: [36, 37, 38]
python: [36, 37, 38, 39]
include:
# Run 32 and 64 bit version in parallel for Linux and Windows
- os: windows-latest
Expand All @@ -34,6 +34,8 @@ jobs:
exclude:
- os: macos-latest
bitness: 32
- os: windows-latest
python: 39

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ jobs:
build:
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, windows-latest, macos-latest]
exclude:
- os: windows-latest
python-version: 3.9

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

Expand Down

0 comments on commit 10ef8e8

Please sign in to comment.