Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3.8 and 3.9 support files for 1.10-branch #3633

Merged
merged 7 commits into from
Nov 9, 2020
Prev Previous commit
Exclude Python 3.4 from macOS and Windows
  • Loading branch information
stevepiercy committed Nov 9, 2020
commit 68c40aa902de420833989864e1e5905f09749eb1
8 changes: 7 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
matrix:
py:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
Expand All @@ -37,11 +38,16 @@ jobs:
architecture: x86
- os: "macos-latest"
architecture: x86
# PyPy on Windows doesn't seem to work
# Python 3.4 on macOS doesn't seem to work
- os: "macos-latest"
py: "3.4"
# PyPy and Python 3.4 on Windows doesn't seem to work
- os: "windows-latest"
py: "pypy3"
- os: "windows-latest"
py: "pypy2"
- os: "windows-latest"
py: "3.4"

name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
Expand Down