Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 50feb20

Browse files
author
Steve Canny
committed
dist: remove Pillow dependency
1 parent e8d7b55 commit 50feb20

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

docs/user/install.rst

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,13 @@ and running ``setup.py``::
3232
cd python-docx-{version}
3333
python setup.py install
3434

35-
|docx| depends on the ``lxml`` package and the ``Pillow`` Imaging Library.
36-
Both ``pip`` and ``easy_install`` will take care of satisfying those
37-
dependencies for you, but if you use this last method you will need to install
38-
those yourself.
35+
|docx| depends on the ``lxml`` package. Both ``pip`` and ``easy_install``
36+
will take care of satisfying those dependencies for you, but if you use this
37+
last method you will need to install those yourself.
3938

4039

4140
Dependencies
4241
------------
4342

4443
* Python 2.6, 2.7, 3.3, or 3.4
4544
* lxml >= 2.3.2
46-
* Pillow >= 2.0

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
Pillow>=2.0
21
behave>=1.2.3
32
flake8>=2.0
43
lxml>=3.1.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def text_of(relpath):
3636
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
3737
PACKAGE_DATA = {'docx': ['templates/*']}
3838

39-
INSTALL_REQUIRES = ['lxml>=2.3.2', 'Pillow>=2.0']
39+
INSTALL_REQUIRES = ['lxml>=2.3.2']
4040
TEST_SUITE = 'tests'
4141
TESTS_REQUIRE = ['behave', 'mock', 'pytest']
4242

0 commit comments

Comments
 (0)