Skip to content
This repository has been archived by the owner on May 26, 2020. It is now read-only.

Commit

Permalink
Drop support for Python 3.2
Browse files Browse the repository at this point in the history
Python 3.2 is no longer supported by PyJWT v1.3.0
  • Loading branch information
jpadilla committed May 23, 2015
1 parent 54048f7 commit dfb3208
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 13 deletions.
8 changes: 0 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,6 @@ env:
- TOX_ENV=py27-django1.7-drf3.1
- TOX_ENV=py27-django1.8-drf3.0
- TOX_ENV=py27-django1.8-drf3.1
- TOX_ENV=py32-django1.6-drf2.4
- TOX_ENV=py32-django1.6-drf3.0
- TOX_ENV=py32-django1.6-drf3.1
- TOX_ENV=py32-django1.7-drf2.4
- TOX_ENV=py32-django1.7-drf3.0
- TOX_ENV=py32-django1.7-drf3.1
- TOX_ENV=py32-django1.8-drf3.0
- TOX_ENV=py32-django1.8-drf3.1
- TOX_ENV=py33-django1.6-drf2.4
- TOX_ENV=py33-django1.6-drf3.0
- TOX_ENV=py33-django1.6-drf3.1
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If you want to know more about JWT, check out the following resources:
Requirements
------------

- Python (2.7, 3.2, 3.3, 3.4)
- Python (2.7, 3.3, 3.4)
- Django (1.6, 1.7, 1.8)
- Django REST Framework (2.4.3, 2.4.4, 3.0.0, 3.1.0)

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ If you want to know more about JWT, check out the following resources:

## Requirements

- Python (2.7, 3.2, 3.3, 3.4)
- Python (2.7, 3.3, 3.4)
- Django (1.6, 1.7)
- Django REST Framework (2.4.3, 2.4.4, 3.0.0)

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def get_package_data(package):
'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',
'Topic :: Internet :: WWW/HTTP',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist =
py27-{flake8,docs},
{py27,py32,py33,py34}-django{1.6,1.7}-drf{2.4,3.0,3.1},
{py27,py32,py33,py34}-django1.8-drf{3.0,3.1}
{py27,py33,py34}-django{1.6,1.7}-drf{2.4,3.0,3.1},
{py27,py33,py34}-django1.8-drf{3.0,3.1}

[testenv]
commands = ./runtests.py --fast {posargs}
Expand Down

0 comments on commit dfb3208

Please sign in to comment.