Skip to content

Commit

Permalink
Set the upper-bound for pandas. (#1137)
Browse files Browse the repository at this point in the history
Pandas 1.0.0 will be released soon and it says it will only support Python 3.6.1 and higher, and also it might contain behavior changes.
We will still support Python 3.5 for a while, we should set the upper-bound for pandas for now to confirm Koalas works with it.
  • Loading branch information
ueshin authored and HyukjinKwon committed Dec 18, 2019
1 parent 12e1ef8 commit dff7fdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dependencies in Koalas. When you update don't forget to update setup.py and install.rst in docs.
pandas>=0.23.2
pandas>=0.23.2,<1.0
pyarrow>=0.10,<0.15
matplotlib>=3.0.0
numpy>=1.14
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
python_requires='>=3.5',
install_requires=[
'pandas>=0.23.2',
'pandas>=0.23.2,<1.0',
'pyarrow>=0.10,<0.15',
'numpy>=1.14',
'matplotlib>=3.0.0',
Expand Down

0 comments on commit dff7fdd

Please sign in to comment.