Skip to content

Commit

Permalink
Add Python 3.5
Browse files Browse the repository at this point in the history
Tests pass on Python 3.5 (the current stable Python release), so it
should be officially supported. This change adds Python 3.5 to automated
testing configurations and `setup.py` language classifiers.

Additionally, ensure that `pypy` tests run on travis.
  • Loading branch information
jonafato committed Dec 5, 2016
1 parent 43b8c03 commit 08c63d6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,8 @@ python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- 'pypy'

install:
- python setup.py install
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -29,6 +29,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='slugify slug transliteration russian german unicode translation flexible',
)
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py33,py34,pypy
envlist = py27,py33,py34,py35,pypy

[testenv]
commands=
Expand Down

0 comments on commit 08c63d6

Please sign in to comment.