Drop support for Python 3.3

Setuptools and Tox no longer support or work on Python 3.3.
This commit is contained in:
Pi Delport 2018-08-20 17:39:40 +02:00
parent ac66302ddc
commit 026aa903d2
3 changed files with 2 additions and 8 deletions

View file

@ -1,7 +1,6 @@
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
@ -18,13 +17,9 @@ matrix:
- { python: 3.5, env: DJANGO=1.7 }
- { python: 3.6, env: DJANGO=1.7 }
- { python: 3.6, env: DJANGO=1.8 }
- { python: 3.3, env: DJANGO=1.9 }
- { python: 3.6, env: DJANGO=1.9 }
- { python: 3.3, env: DJANGO=1.10 }
- { python: 3.6, env: DJANGO=1.10 }
- { python: 3.3, env: DJANGO=1.11 }
- { python: 2.7, env: DJANGO=2.0 }
- { python: 3.3, env: DJANGO=2.0 }
include:
- { python: 3.6, env: TOXENV=flake8 }
- { python: 3.6, env: TOXENV=readme }

View file

@ -89,7 +89,6 @@ setup(
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',

View file

@ -1,8 +1,8 @@
[tox]
envlist =
# Python/Django combinations that are officially supported
py{27,33,34}-django17
py{27,33,34,35}-django18
py{27,34}-django17
py{27,34,35}-django18
py{27,34,35}-django19
py{27,34,35}-django110
py{27,34,35,36}-django111