Skip to content

Commit

Permalink
handle scipy deprecation (#91)
Browse files Browse the repository at this point in the history
* handle scipy deprecationhttps://github.com//issues/89

* pinning scipy 1.8 in testing
  • Loading branch information
weikang9009 authored Mar 3, 2023
1 parent f70619f commit 30c0c08
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/envs/38-minimal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- python=3.8
- scipy=1.7
- scipy=1.8
- numpy=1.21
- pandas=1.3
- matplotlib=3.4
Expand Down
2 changes: 1 addition & 1 deletion pointpats/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

HULL_TYPES = (
numpy.ndarray,
spatial.qhull.ConvexHull,
spatial.ConvexHull,
)

## Define default dispatches and special dispatches without GEOS
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
scipy>=0.11
scipy>=1.8.0
numpy>=1.3
pandas
matplotlib
Expand Down

0 comments on commit 30c0c08

Please sign in to comment.