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

Detail supported Python 3 versions #814

Merged
merged 3 commits into from Oct 28, 2019
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 @@ -12,6 +12,7 @@ addons:
language: python
python:
- 2.7
- 3.6
- 3.7

before_install:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -2,6 +2,7 @@
{next}
------

* Fixed: Add Python 3.6 and 3.7 to the setup file (Issue #814)
* Fixed: Support the preprocess extension on Python 3 (Issue #811)
* Fixed: Fix findfonts on Windows in Python 3 (Issue #807)
* Fixed: Support Sphinx 2.1+ on Python 3 (Issue #788)
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Expand Up @@ -70,6 +70,10 @@ def read(*rnames):
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Documentation',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
Expand Down