Skip to content

Commit f98fe66

Browse files
authored
Merge pull request #54 from ljwolf/ripley-numpy
Ripley numpy
2 parents 4cb3236 + 4f4f4d6 commit f98fe66

12 files changed

+5416
-1070
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ branches:
77
python:
88
- 3.6
99
- 3.7
10+
- 3.8
1011

1112
env:
1213
- PYSAL_PYPI=true MPLBACKEND='pdf'
@@ -16,11 +17,11 @@ matrix:
1617
allow_failures: #allow travis tests to fail if using the github version of libpysal
1718
- python: 3.6
1819
env: PYSAL_PYPI=false MPLBACKEND='pdf'
19-
- python: 3.7
20-
env: PYSAL_PYPI=false MPLBACKEND='pdf'
20+
- python: 3.6
21+
env: PYSAL_PYPI=true MPLBACKEND='pdf'
2122

2223
before_install:
23-
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
24+
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
2425
- chmod +x miniconda.sh
2526
- ./miniconda.sh -b -p ./miniconda
2627
- export PATH=`pwd`/miniconda/bin:$PATH
@@ -33,6 +34,7 @@ install:
3334
- conda install --yes pip
3435
- pip install -r requirements.txt
3536
- pip install -r requirements_tests.txt
37+
- conda install --yes -c conda-forge pygeos shapely geopandas
3638
# configure dual tests (for dependency libpysal)
3739
- if "$PYSAL_PYPI"; then
3840
echo 'testing pypi libpysal' && pip install libpysal;
@@ -45,7 +47,8 @@ install:
4547
script:
4648
- python setup.py sdist >/dev/null
4749
- python setup.py install
48-
- nosetests --verbose --with-coverage --cover-package=pointpats;
50+
# - nosetests --verbose --with-coverage --cover-package=pointpats;
51+
- pytest pointpats
4952

5053
notifications:
5154
email:

notebooks/distance_statistics-numpy-oriented.ipynb

Lines changed: 827 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)