Skip to content

Commit 9d10018

Browse files
committed
Prep for 1.0.6
1 parent bad698b commit 9d10018

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

CHANGES.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
iiif changelog
22
==============
33

4-
????-??-?? v1.0.6
4+
2018-03-05 v1.0.6
55

6-
- ???
6+
- Drop support for Python 2.6
7+
- Use latest version of Pillow (currently 5.0.0)
78

89
2018-02-16 v1.0.5
910

README

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Supports the `International Image Interoperability Framework
1818
`2.0
1919
<http://iiif.io/api/image/2.0/>`_,
2020
`1.1
21-
<http://iiif.io/api/image/1.1/>`_,
21+
<http://iiif.io/api/image/1.1/>`_,
2222
`1.0
2323
<http://iiif.io/api/image/1.0/>`_).
2424
Also includes a test server using the library to implement the Image
@@ -30,14 +30,14 @@ Installation
3030
------------
3131

3232
The library, test server, static file generator are all designed to
33-
work with Python 2.6, 2.7, 3.4, 3.5 and 3.6. Manual installation is
33+
work with Python 2.7, 3.4, 3.5 and 3.6. Manual installation is
3434
necessary to get the demonstration documentation and examples.
3535

3636
**Automatic installation from PyPI**
3737

3838
The *iiif* library code and scripts are listed in `PyPI
39-
<http://pypi.python.org/pypi/iiif>`_ and can be installed with
40-
``pip`` or ``easy_install``, e.g.::
39+
<http://pypi.python.org/pypi/iiif>`_ and can be installed with
40+
``pip`` or ``easy_install``, e.g.::
4141

4242
easy_install iiif
4343

@@ -55,18 +55,18 @@ First, clone the code and examples from the `Github repository
5555

5656
Second, install ``Pillow`` (a fork of ``PIL``)::
5757

58-
pip install 'Pillow<4.0.0'
58+
pip install Pillow
5959

60-
- Pillow is tied to <4.0.0 to remain compatible with python 2.6. This code may work with later versions but is not being tested with them
61-
- You may need ``sudo`` if installing system-wide as opposed to in a user-space environment
60+
You may need ``sudo`` if installing system-wide as opposed to in a user-space
61+
environment.
6262

6363
After installation of ``Pillow`` there will be be a summary of image formats
6464
supported. Addition libraries may be require to get all formats depending
6565
on your platform.
6666

6767
The scripts and demonstrations can then be run from the `iiif` directory.
6868

69-
Finally, you may install the library code and scripts locally in the
69+
Finally, you may install the library code and scripts locally in the
7070
appropriate places within your python setup using::
7171

7272
python setup.py build
@@ -88,7 +88,7 @@ Copyright and License
8888
---------------------
8989

9090
iiif library and programs implementing the IIIF API
91-
Copyright (C) 2012--2017 Simeon Warner
91+
Copyright (C) 2012--2018 Simeon Warner
9292

9393
This program is free software: you can redistribute it and/or modify
9494
it under the terms of the GNU General Public License as published by
@@ -102,6 +102,6 @@ Copyright and License
102102

103103
You should have received a copy of the GNU General Public License
104104
along with this program. If not, see <http://www.gnu.org/licenses/>.
105-
105+
106106
See `LICENSE.txt
107107
<LICENSE.txt>`_

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ def run(self):
6363
"GNU General Public License v3 (GPLv3)",
6464
"Operating System :: OS Independent",
6565
"Programming Language :: Python",
66+
"Programming Language :: Python :: 2",
6667
"Programming Language :: Python :: 2.7",
68+
"Programming Language :: Python :: 3",
6769
"Programming Language :: Python :: 3.4",
6870
"Programming Language :: Python :: 3.5",
6971
"Programming Language :: Python :: 3.6",

0 commit comments

Comments
 (0)