Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NeuroM
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BlueBrain
NeuroM
Commits
d352b7c0
Unverified
Commit
d352b7c0
authored
2 years ago
by
Gianluca Ficarelli
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix QhullError warning (#1063)
parent
acbba0f8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
neurom/morphmath.py
+6
-1
6 additions, 1 deletion
neurom/morphmath.py
with
6 additions
and
1 deletion
neurom/morphmath.py
+
6
−
1
View file @
d352b7c0
...
...
@@ -33,9 +33,14 @@ from itertools import combinations
import
numpy
as
np
from
scipy.spatial
import
ConvexHull
from
scipy.spatial.qhull
import
QhullError
from
scipy.spatial.distance
import
cdist
try
:
# The QhulError was moved in scipy >= 1.8 so if the import fails the old location is imported
from
scipy.spatial
import
QhullError
except
ImportError
:
# pragma: no cover
from
scipy.spatial.qhull
import
QhullError
from
neurom.core.dataformat
import
COLS
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment