From d1c660f1757dedb30e729368a232c429aebeb1f4 Mon Sep 17 00:00:00 2001 From: Mark Smith Date: Sat, 19 Oct 2019 17:05:01 +0100 Subject: [PATCH 1/3] Detail supported Python 3 versions Update the setup file to specify that rst2pdf supports Python 3, specifically versions >= 3.6. Might be good to ask Travis to test against those versions too, but I'll leave that decision to a maintainer. --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 6838e00dc..9b4dd9419 100644 --- a/setup.py +++ b/setup.py @@ -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', From c4022cb610d9fd540b48fa98c2e84c243be9383c Mon Sep 17 00:00:00 2001 From: Rob Allen Date: Mon, 28 Oct 2019 08:52:43 +0000 Subject: [PATCH 2/3] Add Python 3.6 to Travis --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index ee4d05c37..25680f25c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,7 @@ addons: language: python python: - 2.7 + - 3.6 - 3.7 before_install: From 2bef70b2de0fb0687e228c019f7a419b0fdd0c02 Mon Sep 17 00:00:00 2001 From: Rob Allen Date: Mon, 28 Oct 2019 09:11:58 +0000 Subject: [PATCH 3/3] Update CHANGES for #814 --- CHANGES.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.rst b/CHANGES.rst index cebe40c5e..25f8046d6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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)