Skip to content

Commit

Permalink
Travis don't support Python 3.9.0 yet.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Oct 6, 2020
1 parent 6cdd83e commit e74a9cc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
name: "Python ${{ matrix.python-version }}"
runs-on: "windows-2019"
env:
USING_COVERAGE: '3.6,3.7,3.8,3.9'
USING_COVERAGE: '3.6,3.7,3.8'

strategy:
fail-fast: False
matrix:
python-version: ["3.6","3.7","3.8","3.9"]
python-version: ["3.6","3.7","3.8"]


steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python_ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
name: "Python ${{ matrix.python-version }}"
runs-on: "macos-latest"
env:
USING_COVERAGE: '3.6,3.7,3.8,3.9'
USING_COVERAGE: '3.6,3.7,3.8'

strategy:
fail-fast: False
matrix:
python-version: ["3.6","3.7","3.8","3.9"]
python-version: ["3.6","3.7","3.8"]


steps:
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ python:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.9-dev'

arch:
- amd64
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
arch: arm64
- python: '3.8'
arch: arm64
- python: '3.9'
- python: '3.9-dev'
arch: arm64

include:
Expand Down
2 changes: 1 addition & 1 deletion repo_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ python_versions:
- 3.6
- 3.7
- 3.8
- 3.9
- 3.9-dev

additional_ignore:
- wip-shields-block.py
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
# * pytest

[tox]
envlist = py36, py37, py38, py39, mypy, build
envlist = py36, py37, py38, py39-dev, mypy, build
skip_missing_interpreters = True
requires = pip>=20.2.1
isolated_build = True

[envlists]
test = py36, py37, py38, py39
test = py36, py37, py38, py39-dev
qa = mypy, lint
cov = py36, coverage

Expand All @@ -34,14 +34,14 @@ python =
3.6: py36, build, mypy
3.7: py37, build
3.8: py38, build
3.9: py39, build
3.9-dev: py39-dev, build

[gh-actions]
python =
3.6: py36, build
3.7: py37, build
3.8: py38, build
3.9: py39, build
3.9-dev: py39-dev, build

[testenv]
setenv =
Expand Down

0 comments on commit e74a9cc

Please sign in to comment.