Skip to content

Commit

Permalink
Merge pull request spotify#10 from spotify/chris/upgrade_pillow
Browse files Browse the repository at this point in the history
Upgrade Pillow
  • Loading branch information
cphalpert authored Oct 24, 2018
2 parents 0539749 + fe73d73 commit d8b1baa
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
History
=======

2.3.3 (2018-10-24)
------------------

* Removed upper bound of Pillow dependency.

2.3.2 (2018-10-18)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Chartify
.. |release| image:: https://img.shields.io/badge/Release-2.3.2-blue.svg
.. |python| image:: https://img.shields.io/badge/Python-3.6-blue.svg

Chartify is a Python library that aims to make it as easy as possible for data scientists to create charts.
Chartify is a Python library that makes it easy for data scientists to create charts.

Why use Chartify?
-----------------
Expand Down
2 changes: 1 addition & 1 deletion chartify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

__author__ = """Chris Halpert"""
__email__ = '[email protected]'
__version__ = '2.3.2'
__version__ = '2.3.3'

_IPYTHON_INSTANCE = False

Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pytest-runner==2.11.1
pandas==0.23.4
jupyter==1.0.0
pylint==1.7.4
Pillow==4.3.0
Pillow==5.3.0
selenium==3.8.0
bokeh==0.13.0
scipy==1.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
requirements = [
'pandas>=0.21.0,<1.0.0',
'jupyter>=1.0.0,<2.0.0',
'Pillow>=4.3.0,<5.0.0',
'Pillow>=4.3.0',
# Avoid selenium bug:
# https://github.com/SeleniumHQ/selenium/issues/5296
'selenium>=3.7.0,<=3.8.0',
Expand Down

0 comments on commit d8b1baa

Please sign in to comment.