Skip to content

Commit 06afb67

Browse files
Patrick Careypaddycarey
authored andcommitted
Drop support for Python 3.3
1 parent 4b2e5f0 commit 06afb67

File tree

5 files changed

+4
-9
lines changed

5 files changed

+4
-9
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ env:
66

77
python:
88
- "2.7"
9-
- "3.3"
109
- "3.4"
1110
- "3.5"
1211
- "3.6"

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,4 @@ Before you submit a pull request, check that it meets these guidelines:
138138

139139
1. The pull request should include tests.
140140
2. If the pull request adds functionality, the docs should be updated. If applicable, add the feature to the list in README.rst.
141-
3. The pull request should work for Python 2.7, 3.3, 3.4, and 3.5, and for PyPy. Check https://travis-ci.org/shopkeep/shpkpr/pull_requests and make sure that the tests pass for all supported Python versions.
141+
3. The pull request should work for Python 2.7, 3.4, 3.5 and 3.6, and for PyPy. Check https://travis-ci.org/shopkeep/shpkpr/pull_requests and make sure that the tests pass for all supported Python versions.

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: build-test clean clean.build clean.pyc clean.test docs.watch docs help test.2.7 test.3.3 test.3.4 test.3.5 test.3.6 test.pypy test.integration test
1+
.PHONY: build-test clean clean.build clean.pyc clean.test docs.watch docs help test.2.7 test.3.4 test.3.5 test.3.6 test.pypy test.integration test
22

33

44
default: help
@@ -20,15 +20,12 @@ build-test:
2020
# User-defined function to allow easy running of our tests inside Docker
2121
docker-test = docker run -i -v `pwd`:/src:ro -v /var/run/docker.sock:/var/run/docker.sock $(1) --rm shpkpr-test $(2)
2222

23-
test: clean build-test ## Run tests against all supported Python versions (2.7, 3.3, 3.4, 3.5 and pypy) inside Docker
23+
test: clean build-test ## Run tests against all supported Python versions (2.7, 3.4, 3.5, 3.6 and pypy) inside Docker
2424
$(call docker-test)
2525

2626
test.2.7: clean build-test ## Run Python 2.7 tests inside Docker
2727
$(call docker-test,,tox -e py27-lowest -e py27-current)
2828

29-
test.3.3: clean build-test ## Run Python 3.3 tests inside Docker
30-
$(call docker-test,,tox -e py33-lowest -e py33-current)
31-
3229
test.3.4: clean build-test ## Run Python 3.4 tests inside Docker
3330
$(call docker-test,,tox -e py34-lowest -e py34-current)
3431

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
"Programming Language :: Python :: 2",
5151
'Programming Language :: Python :: 2.7',
5252
'Programming Language :: Python :: 3',
53-
'Programming Language :: Python :: 3.3',
5453
'Programming Language :: Python :: 3.4',
5554
'Programming Language :: Python :: 3.5',
5655
'Programming Language :: Python :: 3.6',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,33,34,35,36,py}-{lowest,current}
2+
envlist = py{27,34,35,36,py}-{lowest,current}
33
skipsdist = {env:TOXBUILD:false}
44

55
[pytest]

0 commit comments

Comments
 (0)