Skip to content

Commit 05dacba

Browse files
authored
Remove Python 3.3 from test environments (#346)
* Removed Python 3.3 from Travel environments due to dependencies dropping support for it. * Removed 3.3 from Appveyer * Removed 3.3 from setup.py
1 parent 8a6e36e commit 05dacba

File tree

4 files changed

+1
-7
lines changed

4 files changed

+1
-7
lines changed

.appveyor.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,12 @@ environment:
44
matrix:
55
- PYTHON: "C:\\Python27"
66
PYTHON_VERSION: "py27-x86"
7-
- PYTHON: "C:\\Python33"
8-
PYTHON_VERSION: "py33-x86"
97
- PYTHON: "C:\\Python34"
108
PYTHON_VERSION: "py34-x86"
119
- PYTHON: "C:\\Python35"
1210
PYTHON_VERSION: "py35-x86"
1311
- PYTHON: "C:\\Python27-x64"
1412
PYTHON_VERSION: "py27-x64"
15-
- PYTHON: "C:\\Python33-x64"
16-
PYTHON_VERSION: "py33-x64"
1713
- PYTHON: "C:\\Python34-x64"
1814
PYTHON_VERSION: "py34-x64"
1915
- PYTHON: "C:\\Python35-x64"

.travis.yml

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

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def find_version(*file_paths):
4242
'Programming Language :: Python :: 2',
4343
'Programming Language :: Python :: 2.7',
4444
'Programming Language :: Python :: 3',
45-
'Programming Language :: Python :: 3.3',
4645
'Programming Language :: Python :: 3.4',
4746
'Programming Language :: Python :: 3.5',
4847
'Programming Language :: Python :: 3.6',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
; for quality analysis, use `tox -e flake8` or just `flake8 slackclient`
55
; to build the docs, use `tox -e docs`
66
envlist=
7-
py{27,33,34,35,36},
7+
py{27,34,35,36},
88
flake8,
99
docs
1010

0 commit comments

Comments
 (0)