Skip to content

Commit 9836136

Browse files
committed
Can't test on Python 3.10 yet.
1 parent 3ca4d9a commit 9836136

File tree

4 files changed

+2
-11
lines changed

4 files changed

+2
-11
lines changed

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ python:
1010
- '3.7'
1111
- '3.8'
1212
- '3.9'
13-
- '3.10-dev'
1413

1514
arch:
1615
- amd64
@@ -35,17 +34,13 @@ stages:
3534
jobs:
3635
allow_failures:
3736
- arch: arm64
38-
- python: ['3.10-dev']
39-
4037
exclude:
4138
- python: '3.7'
4239
arch: arm64
4340
- python: '3.8'
4441
arch: arm64
4542
- python: '3.9'
4643
arch: arm64
47-
- python: '3.10-dev'
48-
arch: arm64
4944

5045
include:
5146
- stage: test

repo_helper.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ python_versions:
2424
- '3.7'
2525
- '3.8'
2626
- '3.9'
27-
- '3.10-dev'
2827

2928
# travis secure password for PyPI
3029
travis_pypi_secure: ""

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ classifiers =
2929
Operating System :: POSIX :: Linux
3030
Programming Language :: Python
3131
Programming Language :: Python :: 3 :: Only
32-
Programming Language :: Python :: 3.10
3332
Programming Language :: Python :: 3.6
3433
Programming Language :: Python :: 3.7
3534
Programming Language :: Python :: 3.8

tox.ini

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

2020
[tox]
21-
envlist = py36, py37, py38, py39, py310-dev, mypy, build
21+
envlist = py36, py37, py38, py39, mypy, build
2222
skip_missing_interpreters = True
2323
requires = pip>=20.2.1
2424
isolated_build = True
2525

2626
[envlists]
27-
test = py36, py37, py38, py39, py310-dev
27+
test = py36, py37, py38, py39
2828
qa = mypy, lint
2929
cov = py36, coverage
3030

@@ -34,15 +34,13 @@ python =
3434
3.7: py37, build
3535
3.8: py38, build
3636
3.9: py39, build
37-
3.10-dev: py310-dev, build
3837

3938
[gh-actions]
4039
python =
4140
3.6: py36, build
4241
3.7: py37, build
4342
3.8: py38, build
4443
3.9: py39, build
45-
3.10-dev: py310-dev, build
4644

4745
[testenv]
4846
setenv =

0 commit comments

Comments
 (0)