Skip to content

Commit

Permalink
Merge pull request #1270 from compas-dev/scipy_cross
Browse files Browse the repository at this point in the history
import cross from numpy instead of scipy
  • Loading branch information
gonzalocasas authored Jan 22, 2024
2 parents 87a358d + 39dd3fc commit 05a76e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* Fixed `ImportError` when when `scipy==1.12.0` is installed.

### Removed


Expand Down
2 changes: 1 addition & 1 deletion src/compas/numerical/operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from numpy import hstack
from numpy import tile

from scipy import cross
from numpy import cross
from scipy.sparse import coo_matrix

from compas.numerical.linalg import normrow
Expand Down

0 comments on commit 05a76e5

Please sign in to comment.