Skip to content

Commit

Permalink
Merge pull request #113 from jdufresne/py37
Browse files Browse the repository at this point in the history
Add testing and document support for Python 3.7
  • Loading branch information
zoofood authored Sep 17, 2018
2 parents 3442ee6 + 1a18c55 commit 7f4f3b6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,11 @@ python:
- "3.4"
- "3.5"
- "3.6"

matrix:
include:
- python: "3.7"
dist: xenial
sudo: true

script: python setup.py test
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
appdirs Changelog
=================

UNRELEASED
----------
- Add Python 3.7 support

appdirs 1.4.4
-------------
- [PR #92] Don't import appdirs from setup.py which resolves issue #91
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def read(fname):
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
Expand All @@ -48,6 +49,7 @@ def read(fname):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py32, py33, py34, py35, py36
envlist = py26, py27, py32, py33, py34, py35, py36, py37

[testenv]
commands = python setup.py test

0 comments on commit 7f4f3b6

Please sign in to comment.