Skip to content

Commit

Permalink
Relax the constraint for the version of pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuki Hayashi committed Dec 17, 2020
1 parent ca36e86 commit 62cb35b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pandas==0.21.0
pandas>=0.21.0
numpy>=1.15.0
matplotlib>=2.2.2
boto3>=1.9.36
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def read(fname):
os.path.splitext(os.path.basename(path))[0] for path in glob("src/*.py")
],
install_requires=[
"pandas==0.21.0",
"pandas>=0.21.0",
"numpy>=1.15.0",
"matplotlib>=2.2.2",
"boto3>=1.9.36",
Expand Down
4 changes: 2 additions & 2 deletions src/backlight/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = "AlpacaJapan Co., Ltd."
__version__ = "1.0.8"
__release__ = "1.0.8"
__version__ = "1.0.9"
__release__ = "1.0.9"
__license__ = "MIT"

0 comments on commit 62cb35b

Please sign in to comment.