Skip to content

Commit 5c62dd5

Browse files
committed
Python 3.9 is now available on Travis
1 parent ca6a456 commit 5c62dd5

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "windows-2019"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8'
15+
USING_COVERAGE: '3.6,3.7,3.8,3.9'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8"]
20+
python-version: ["3.6","3.7","3.8","3.9"]
2121

2222

2323
steps:

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "macos-latest"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8,pypy3'
15+
USING_COVERAGE: '3.6,3.7,3.8,pypy3,3.9'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8","pypy3"]
20+
python-version: ["3.6","3.7","3.8","pypy3","3.9"]
2121

2222

2323
steps:

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ python:
99
- '3.7'
1010
- '3.8'
1111
- 'pypy3'
12-
- '3.9-dev'
12+
- '3.9'
1313

1414
arch:
1515
- amd64
@@ -43,7 +43,7 @@ jobs:
4343
arch: arm64
4444
- python: 'pypy3'
4545
arch: arm64
46-
- python: '3.9-dev'
46+
- python: '3.9'
4747
arch: arm64
4848

4949
include:

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ python_versions:
1111
- '3.7'
1212
- "3.8"
1313
- "pypy3"
14-
- "3.9-dev"
14+
- "3.9"
1515

1616
# travis secure password for PyPI
1717
travis_pypi_secure: "GQVX7JKDfUWcHQzjmZ8yadF4eIM/AUaXu/Zl8U2hwhB6NavbzUayvMXalT+pfgZ6NaWFMPZOETlxv5d+hf98Io/5HIV4i1KB98ze90KXpUU2Icz7IdxWDWGhc36Vkhb7hU0HUfXLu8WxcxQCJB3t7uIB9SO36dh/cMayW5YvBy3HhluaTvgLax4nOJYjN/FJCgs9kTCBYrjJzheS0pgj37bXZCrB06H0bsxgnbaAiL8FiG6tgJLABDLfqPhtJgVRhtdYeuqGv31/OV0vkj1zG6bExp9ENQ4/5L7FijLRznW+DnsRJt6BdTBtxNxK+v1ZccTdVJzTzhoUH/TbXdI+qtBeatTYz880du7TujKoxfFxGZ9+bSaYURaClMHn7/Ndj7ioj5f51jLf8+BCEk3cWEfUL7yeKF6RBWLww6cFKQ9yDNOiXgrsndz6Oh535LV28rKXS1qeGBppMAv09RmR/YfHu+XMp5yWa+vDwjmrQDH7qEkA3wYYMfMRnwi9+LrOHtS7IqFkgbAXZPmh3C0X1UEqD4cuARcyD9FRU2PAXM1tBprxEFi1L/sv4O8KRP+I3jXXsBHTmzbWWVqXiySGOlX6R9vOma35WS3mkllS/Oz7IyhUtONrwpaLHnuBLKMgi+RnsoEYgLx6KgSXVSQ0JUZq8cP2yewC8nx626w675w="

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
# * pytest
2020

2121
[tox]
22-
envlist = py36, py37, py38, pypy3, py39-dev, mypy, build
22+
envlist = py36, py37, py38, pypy3, py39, mypy, build
2323
skip_missing_interpreters = True
2424
requires = pip>=20.2.1
2525
isolated_build = True
2626

2727
[envlists]
28-
test = py36, py37, py38, pypy3, py39-dev
28+
test = py36, py37, py38, pypy3, py39
2929
qa = mypy, lint
3030
cov = py36, coverage
3131

@@ -35,15 +35,15 @@ python =
3535
3.7: py37, build
3636
3.8: py38, build
3737
pypy3: pypy3, build
38-
3.9-dev: py39-dev, build
38+
3.9: py39, build
3939

4040
[gh-actions]
4141
python =
4242
3.6: py36, build
4343
3.7: py37, build
4444
3.8: py38, build
4545
pypy3: pypy3, build
46-
3.9-dev: py39-dev, build
46+
3.9: py39, build
4747

4848
[testenv]
4949
setenv =

0 commit comments

Comments
 (0)