Skip to content

Commit

Permalink
Merge pull request #308 from thombashi/python37_support
Browse files Browse the repository at this point in the history
Add support for Python 3.7
  • Loading branch information
nicholasserra committed Oct 1, 2018
2 parents 0f6cea9 + 52fc8e8 commit 1411344
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -7,6 +7,7 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
# command to install dependencies
install: pip install Pygments>=2.1.1
# command to run tests
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -25,6 +25,7 @@
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Documentation
Expand Down
2 changes: 1 addition & 1 deletion test/testall.py
Expand Up @@ -26,7 +26,7 @@ def _python_ver_from_python(python):

def _gen_python_names():
yield "python"
for ver in [(2,6), (2,7), (3,3), (3,4), (3,5), (3,6)]:
for ver in [(2,6), (2,7), (3,3), (3,4), (3,5), (3,6), (3,7)]:
yield "python%d.%d" % ver
if sys.platform == "win32":
yield "python%d%d" % ver
Expand Down

0 comments on commit 1411344

Please sign in to comment.