From c508aba94389bac77dc003a4bbab70d62ff1badd Mon Sep 17 00:00:00 2001 From: John S Bogaardt Date: Mon, 23 Mar 2020 06:51:57 -0600 Subject: [PATCH] relax pandas requirement --- setup.py | 4 ++-- xlcompose/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7c5a4fd..fd7e6aa 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ descr = "A declarative API for composing spreadsheets from python" name = 'xlcompose' url = 'https://github.com/jbogaardt/xlcompose' -version='0.1.10' # Put this in __init__.py +version='0.1.11' # Put this in __init__.py data_path = '' setup( @@ -25,7 +25,7 @@ description=descr, # long_description=open('README.md').read(), install_requires=[ - "pandas<1.0", + "pandas", "xlsxwriter>=1.1.8", ], ) diff --git a/xlcompose/__init__.py b/xlcompose/__init__.py index 9763712..005f80b 100644 --- a/xlcompose/__init__.py +++ b/xlcompose/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.1.10' +__version__ = '0.1.11' from xlcompose.core import ( DataFrame, Series, Row, Column, Tabs, CSpacer, RSpacer, Title, Image, VSpacer, HSpacer)