Skip to content

Commit 875a383

Browse files
committed
drop py33
1 parent 353dbed commit 875a383

File tree

4 files changed

+6
-13
lines changed

4 files changed

+6
-13
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ language: python
33
cache: pip
44
python:
55
- 2.7
6-
- 3.3
76
- 3.4
87
- 3.5
98
- 3.6

appveyor.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ environment:
1212
PYTHON_VERSION: "2.7.x"
1313
PYTHON_ARCH: "64"
1414

15-
- PYTHON: "C:\\Python33-x64"
16-
PYTHON_VERSION: "3.3.x"
17-
PYTHON_ARCH: "64"
18-
1915
- PYTHON: "C:\\Python34-x64"
2016
PYTHON_VERSION: "3.4.x"
2117
PYTHON_ARCH: "64"

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@
8888
'Programming Language :: Python :: 2',
8989
'Programming Language :: Python :: 2.7',
9090
'Programming Language :: Python :: 3',
91-
'Programming Language :: Python :: 3.3',
9291
'Programming Language :: Python :: 3.4',
9392
'Programming Language :: Python :: 3.5',
9493
'Programming Language :: Python :: 3.6',

tox.ini

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py{27,33,34,35,36}-lint,
4-
py{27,33,34,35,36}-unit,
3+
py{27,34,35,36}-lint,
4+
py{27,34,35,36}-unit,
55
py35-mypy{2,3},
66
py27-pipconflictchecker,
77
py27-lint-readme,
@@ -12,22 +12,21 @@ skip_missing_interpreters = True
1212

1313
[tox:travis]
1414
2.7 = py27
15-
3.3 = py33
1615
3.4 = py34
1716
3.5 = py35
1817
3.6 = py36
1918

2019
[testenv]
2120
deps =
2221
-rrequirements.txt
23-
py{27,33,34,35,36}-lint: flake8
22+
py{27,34,35,36}-lint: flake8
2423

2524
commands =
26-
py{27,33,34,35,36}-unit: python setup.py test
27-
py{27,33,34,35,36}-lint: flake8 schema_salad setup.py
25+
py{27,34,35,36}-unit: python setup.py test
26+
py{27,34,35,36}-lint: flake8 schema_salad setup.py
2827

2928
whitelist_externals =
30-
py{27,33,34,35,36}-lint: flake8
29+
py{27,34,35,36}-lint: flake8
3130

3231
[testenv:py35-mypy2]
3332
commands = make mypy2

0 commit comments

Comments
 (0)