Skip to content

Commit

Permalink
Tighten lower bounds of packages (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
randyzwitch authored Mar 22, 2019
1 parent 1d6ff54 commit 2b1df16
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ci/install-travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ conda create -n omnisci-dev python=${PYTHON} \
thrift=0.11.0 \
numpydoc \
"pyarrow>=0.10.0,<0.13" \
sqlalchemy \
numpy>=1.14 \
pandas \
sqlalchemy>=1.3 \
numpy>=1.16 \
pandas>=0.24 \
coverage \
flake8 \
pytest \
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

install_requires = ['thrift == 0.11.0', 'sqlalchemy', 'numpy', 'pandas',
install_requires = ['thrift == 0.11.0',
'sqlalchemy >= 1.3',
'numpy >= 1.16',
'pandas >= 0.24',
'pyarrow >= 0.10.0,<0.13']

# Optional Requirements
Expand Down

0 comments on commit 2b1df16

Please sign in to comment.