Skip to content

Commit

Permalink
relax pandas requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
jbogaardt committed Mar 23, 2020
1 parent 03e0688 commit c508aba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -25,7 +25,7 @@
description=descr,
# long_description=open('README.md').read(),
install_requires=[
"pandas<1.0",
"pandas",
"xlsxwriter>=1.1.8",
],
)
2 changes: 1 addition & 1 deletion xlcompose/__init__.py
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit c508aba

Please sign in to comment.