From bc1527cc58d7b78048baa14a542ef1101a69f6d9 Mon Sep 17 00:00:00 2001 From: hugovk Date: Fri, 23 Dec 2016 22:42:21 +0200 Subject: [PATCH 1/3] Python 3.6 is out --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index b88dc5ff2..9f9b050e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,15 +9,16 @@ notifications: python: - "pypy" - "pypy3" - - 3.5 + - 3.6 - 2.7 - "2.7_with_system_site_packages" # For PyQt4 - - 3.3 + - 3.5 - 3.4 + - 3.3 - nightly dist: trusty - + install: - "travis_retry sudo apt-get update" - "travis_retry sudo apt-get -qq install libfreetype6-dev liblcms2-dev python-qt4 ghostscript libffi-dev libjpeg-turbo-progs cmake imagemagick" @@ -43,10 +44,10 @@ install: # libimagequant - pushd depends && ./install_imagequant.sh && popd - + # extra test images - - pushd depends && ./install_extra_test_images.sh && popd - + - pushd depends && ./install_extra_test_images.sh && popd + - travis_retry pip install -e . From 32e33175af8dc677c50390bb91b0703d09a8aa91 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 24 Dec 2016 11:38:13 +1100 Subject: [PATCH 2/3] Added documentation for Python 3.6 support --- docs/installation.rst | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/installation.rst b/docs/installation.rst index 2724886bb..f2b27da42 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -17,7 +17,7 @@ Notes .. note:: Pillow >= 2.0.0 < 3.5.0 supports Python versions 2.6, 2.7, 3.2, 3.3, 3.4, 3.5 -.. note:: Pillow >= 3.5.0 supports Python versions 2.7, 3.3, 3.4, 3.5 +.. note:: Pillow >= 3.5.0 supports Python versions 2.7, 3.3, 3.4, 3.5, 3.6 Basic Installation ------------------ diff --git a/setup.py b/setup.py index c34b8ed47..c35d4357c 100755 --- a/setup.py +++ b/setup.py @@ -763,6 +763,7 @@ try: "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ], From 1f897e87d911dc5b1240da26d66d53ef84197df9 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 25 Dec 2016 22:03:04 +1100 Subject: [PATCH 3/3] Added py36 to tox envlist --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4d63febd0..a4a21e697 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py33, py34, py35 +envlist = py27, py33, py34, py35, py36 [testenv] commands =