Remove Python 3.2 support

This commit is contained in:
Grant McConnaughey 2016-09-03 09:54:58 -05:00
parent 9008105966
commit 9ab6f0de6a
3 changed files with 2 additions and 6 deletions

View file

@ -1,7 +1,6 @@
language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
@ -19,12 +18,8 @@ env:
- DJANGO=1.10.1
matrix:
exclude:
- python: 3.2
env: DJANGO=1.10.1
- python: 3.3
env: DJANGO=1.10.1
- python: 3.2
env: DJANGO=1.9.9
- python: 3.3
env: DJANGO=1.9.9
- python: 3.5

View file

@ -3,6 +3,7 @@ Changelog
* 3.1.0 (Not released)
* Added Django 1.10 support
* Removed Python 3.2 support
* 3.0.0 (February 26, 2016):
* Added the ability to hide usernames/emails from avatar URLs.

View file

@ -32,13 +32,13 @@ setup(
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',