Skip to content

Commit 1f120fd

Browse files
committed
Python 3.10 builds are broken on Travis
1 parent b164d2b commit 1f120fd

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ python:
99
- '3.7'
1010
- '3.8'
1111
- '3.9'
12-
- '3.10-dev'
1312

1413
arch:
1514
- amd64
@@ -43,8 +42,6 @@ jobs:
4342
arch: arm64
4443
- python: '3.9'
4544
arch: arm64
46-
- python: '3.10-dev'
47-
arch: arm64
4845

4946
include:
5047
- stage: test

repo_helper.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ python_versions:
2727
- '3.7'
2828
- '3.8'
2929
- '3.9'
30-
- '3.10-dev'
3130

3231
# additional lines for MANIFEST.in
3332
manifest_additional:

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ classifiers =
2727
Operating System :: OS Independent
2828
Programming Language :: Python
2929
Programming Language :: Python :: 3 :: Only
30-
Programming Language :: Python :: 3.10
3130
Programming Language :: Python :: 3.6
3231
Programming Language :: Python :: 3.7
3332
Programming Language :: Python :: 3.8

tox.ini

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

@@ -35,15 +35,13 @@ python =
3535
3.7: py37, build, mypy
3636
3.8: py38, build
3737
3.9: py39, build
38-
3.10-dev: py310-dev, build
3938

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

4846
[testenv]
4947
setenv =

0 commit comments

Comments
 (0)