Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Python 3.7 #308

Merged
merged 1 commit into from Oct 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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