Skip to content

Commit

Permalink
fix: change package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeller3 committed Nov 6, 2024
1 parent 2943b2e commit 8e45fd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Core
geojson==3.1.0
geopandas==1.0.1
shapely==2.0.1
scipy==1.10.1
shapely==2.0.6
scipy==1.14.1
numpy==1.26.4
2 changes: 1 addition & 1 deletion turfpy/transformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def add_edge(edges, edge_points, coords, i, j):
edge_points = []
# loop over triangles:
# ia, ib, ic = indices of corner points of the triangle
for ia, ib, ic in tri.vertices:
for ia, ib, ic in tri.simplices:
pa = coords[ia]
pb = coords[ib]
pc = coords[ic]
Expand Down

0 comments on commit 8e45fd9

Please sign in to comment.