Skip to content

Commit eac5974

Browse files
committed
Test on Python 3.10
1 parent 24a73d3 commit eac5974

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python:
1010
- '3.8'
1111
- 'pypy3'
1212
- '3.9'
13-
- '3.9-dev'
13+
- '3.10-dev'
1414

1515
arch:
1616
- amd64
@@ -35,6 +35,7 @@ stages:
3535
jobs:
3636
allow_failures:
3737
- arch: arm64
38+
- python: ['3.10-dev']
3839

3940
exclude:
4041
- python: '3.7'
@@ -45,7 +46,7 @@ jobs:
4546
arch: arm64
4647
- python: '3.9'
4748
arch: arm64
48-
- python: '3.9-dev'
49+
- python: '3.10-dev'
4950
arch: arm64
5051

5152
include:

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ python_versions:
1212
- "3.8"
1313
- "pypy3"
1414
- "3.9"
15-
- "3.9-dev"
15+
- "3.10-dev"
1616

1717
# travis secure password for PyPI
1818
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="

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers =
2727
Operating System :: OS Independent
2828
Programming Language :: Python
2929
Programming Language :: Python :: 3 :: Only
30+
Programming Language :: Python :: 3.10
3031
Programming Language :: Python :: 3.6
3132
Programming Language :: Python :: 3.7
3233
Programming Language :: Python :: 3.8

tox.ini

Lines changed: 5 additions & 5 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, py39-dev, mypy, build
22+
envlist = py36, py37, py38, pypy3, py39, py310-dev, 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, py39-dev
28+
test = py36, py37, py38, pypy3, py39, py310-dev
2929
qa = mypy, lint
3030
cov = py36, coverage
3131

@@ -36,7 +36,7 @@ python =
3636
3.8: py38, build
3737
pypy3: pypy3, build
3838
3.9: py39, build
39-
3.9-dev: py39-dev, build
39+
3.10-dev: py310-dev, build
4040

4141
[gh-actions]
4242
python =
@@ -45,7 +45,7 @@ python =
4545
3.8: py38, build
4646
pypy3: pypy3, build
4747
3.9: py39, build
48-
3.9-dev: py39-dev, build
48+
3.10-dev: py310-dev, build
4949

5050
[testenv]
5151
setenv =
@@ -76,7 +76,7 @@ deps =
7676
check-wheel-contents>=0.1.0
7777
commands =
7878
python -m pep517.build --source --binary "{toxinidir}"
79-
twine check dist/*
79+
twine check dist/*.tar.gz dist/*.whl
8080
check-wheel-contents dist/
8181

8282
[testenv:lint]

0 commit comments

Comments
 (0)