Skip to content

Commit

Permalink
try to fix TravisCI package install.
Browse files Browse the repository at this point in the history
also change version number to fix a warning in the TravisCI log
  • Loading branch information
slumnitz committed Jun 27, 2018
1 parent 5c2e893 commit 6d41c53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,18 @@ install:
- conda install --yes --file requirements.txt;
- pip install libpysal
- if [[ PYSAL_PLUS ]]; then conda install --yes numba; fi
- pip install matplotlib
# We need geopandas master, the legend_kwds is not in 0.3.0
- pip install https://github.com/geopandas/geopandas/archive/master.zip
# We need splot master, since splot is not released yet
- pip install https://github.com/pysal/splot/archive/master.zip
- pip install matplotlib

script:
- pwd
- ls -al
- python setup.py sdist >/dev/null
- cd dist
- pip install --upgrade --no-deps esda*.tar.gz
- nosetests -v esda;

notifications:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.command.build_py import build_py

setup(name='esda', # name of package
version='1.0.1dev',
version='1.0.1.dev0',
description='Package with statistics for exploratory spatial data analysis',
url='https://github.com/pysal/esda',
maintainer='Sergio Rey',
Expand Down

0 comments on commit 6d41c53

Please sign in to comment.