Skip to content

Commit

Permalink
Drop support for Python 3.3
Browse files Browse the repository at this point in the history
py.test no longer supports Python 3.3.
  • Loading branch information
mgedmin committed Nov 28, 2017
1 parent 8e58fb3 commit 8085689
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- pypy-5.4.1
- pypy3.3-5.2-alpha1
- pypy
- pypy3
install:
- pip install mock coverage coveralls
- pip install .
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Changelog

- Claim Python 3.6 support.

- Drop Python 3.3 support.


2.7.0 (2016-09-15)
------------------
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ environment:
# https://www.appveyor.com/docs/installed-software#python lists available
# versions
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def get_version(filename='src/restview/restviewhttp.py'):
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,py35,py36,pypy
py27,py34,py35,py36,pypy

[testenv]
deps =
Expand Down

0 comments on commit 8085689

Please sign in to comment.