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)