Skip to content

Commit fbf0594

Browse files
authored
Removed Python 3.3 CI testing (hardbyte#322)
Removed Python 3.3 CI testing
1 parent 2809518 commit fbf0594

2 files changed

Lines changed: 3 additions & 14 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
environment:
2-
32
matrix:
43

54
# For Python versions available on Appveyor, see
@@ -14,14 +13,7 @@ environment:
1413
- PYTHON: "C:\\Python35-x64"
1514
- PYTHON: "C:\\Python36-x64"
1615

17-
# officially unsupported
18-
- PYTHON: "C:\\Python33"
19-
- PYTHON: "C:\\Python33-x64"
20-
21-
matrix:
22-
allow_failures:
23-
- PYTHON: "C:\\Python33"
24-
- PYTHON: "C:\\Python33-x64"
16+
# Python 3.3 has reached EOL
2517

2618
install:
2719
# Prepend Python installation to PATH

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ language: python
33
python:
44
# CPython:
55
- "2.7"
6-
- "3.3" # but allowed to fail
6+
# Python 3.3 has reached EOL and pytest fails there
77
- "3.4"
88
- "3.5"
99
- "3.6"
1010
- "3.7-dev" # TODO: change to "3.7" once it gets released
1111
- "nightly"
1212
# PyPy:
1313
- "pypy"
14-
- "pypy3"
14+
- "pypy3.5"
1515

1616
os:
1717
- linux # Linux is officially supported and we test the library under
@@ -43,9 +43,6 @@ matrix:
4343

4444
# we do not allow dev builds to fail, since these builds are considered stable enough
4545

46-
# Python 3.3 tests are allowed to fail since Python 3.3 is not offically supported any more
47-
- python: "3.3"
48-
4946
install:
5047
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo bash test/open_vcan.sh ; fi
5148
- travis_retry pip install .[test]

0 commit comments

Comments
 (0)