Skip to content

Commit ba3578a

Browse files
authored
Stop running Python 3.5 in CI, run Python 3.9 with mypyc (#10345)
* Stop running Python 3.5 in CI Python 3.5 always fails in CI these days Linking #9950 * Run 3.9 tests with mypyc Co-authored-by: hauntsaninja <>
1 parent 887c1eb commit ba3578a

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.travis.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@ env:
2424
jobs:
2525
fast_finish: true
2626
include:
27-
# Specifically request 3.5.1 because we need to be compatible with that.
28-
- name: "run test suite with python 3.5.1 (compiled with mypyc)"
29-
python: 3.5.1
30-
dist: trusty
31-
env:
32-
- TOXENV=py
33-
- EXTRA_ARGS="-n 2"
34-
- TEST_MYPYC=1
3527
- name: "run test suite with python 3.6"
3628
python: 3.6 # 3.6.3 pip 9.0.1
3729
- name: "run test suite with python 3.7 (compiled with mypyc)"
@@ -42,8 +34,12 @@ jobs:
4234
- TEST_MYPYC=1
4335
- name: "run test suite with python 3.8"
4436
python: 3.8
45-
- name: "run test suite with python 3.9"
37+
- name: "run test suite with python 3.9 (compiled with mypyc)"
4638
python: 3.9
39+
env:
40+
- TOXENV=py
41+
- EXTRA_ARGS="-n 2"
42+
- TEST_MYPYC=1
4743
- name: "run test suite with python nightly"
4844
python: nightly
4945
- name: "run mypyc runtime tests with python 3.6 debug build"

0 commit comments

Comments
 (0)