From 9a9092773f9c7b6b7f144578071ad5baa60bc14f Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 7 Dec 2019 22:13:29 +1100 Subject: [PATCH 1/2] Removed references to Python 2.7 [ci skip] --- docs/installation.rst | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 36ed805fe..01ec0fe68 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -95,14 +95,13 @@ Pillow can be installed on FreeBSD via the official Ports or Packages systems: **Packages**:: - $ pkg install py27-pillow + $ pkg install py36-pillow .. note:: The `Pillow FreeBSD port `_ and packages - are tested by the ports team with all supported FreeBSD versions - and against Python 2.7 and 3.x. + are tested by the ports team with all supported FreeBSD versions. Building From Source @@ -174,8 +173,6 @@ Many of Pillow's features require external libraries: * Libimagequant is licensed GPLv3, which is more restrictive than the Pillow license, therefore we will not be distributing binaries with libimagequant support enabled. - * Windows support: Libimagequant requires VS2015/MSVC 19 to compile, - so it is unlikely to work with Python 2.7 on Windows. * **libraqm** provides complex text layout support. From 6f9f1c1d2b161a63f6fab051aca8d79c5d8da642 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 7 Dec 2019 22:18:51 +1100 Subject: [PATCH 2/2] Removed outdated documentation [ci skip] --- depends/README.rst | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/depends/README.rst b/depends/README.rst index 069d2b81f..ce88fa47b 100644 --- a/depends/README.rst +++ b/depends/README.rst @@ -7,24 +7,3 @@ build & install non-packaged dependencies; useful for testing with Travis CI. ``install_extra_test_images.sh`` can be used to install additional test images that are used for Travis CI and AppVeyor. - -The other scripts can be used to install all of the dependencies for -the listed operating systems/distros. The ``ubuntu_14.04.sh`` and -``debian_8.2.sh`` scripts have been tested on bare AWS images and will -install all required dependencies for the system Python 2.7 and 3.4 -for all of the optional dependencies. Git may also be required prior -to running the script to actually download Pillow. - -e.g.:: - - $ sudo apt-get install git - $ git clone https://github.com/python-pillow/Pillow.git - $ cd Pillow/depends - $ ./debian_8.2.sh - $ cd .. - $ git checkout [branch or tag] - $ virtualenv -p /usr/bin/python2.7 ~/vpy27 - $ source ~/vpy27/bin/activate - $ make install - $ make test -