Skip to content

Commit

Permalink
Blender 3.0.0 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
gogobd committed Sep 1, 2021
1 parent 3cadd65 commit 8b86265
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions alphamesh_addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
bl_info = {
"name": "Alpha Mesh addon",
"author": "Georg Gogo. BERNHARD <[email protected]>",
"version": (0, 2, 2),
"version": (0, 2, 3),
"blender": (2, 82, 0),
"location": "Properties > Object Tab",
"description": ("Alpha Mesh addon (using SciPy)"),
Expand Down Expand Up @@ -31,7 +31,11 @@
import numpy as np
from scipy.spatial import Delaunay
except ImportError as e:
bpy_executable = bpy.app.binary_path_python
try:
bpy_executable = bpy.app.binary_path_python
except AttributeError:
bpy_executable = sys.executable

hint = """
ERROR: Alphamesh addon could not be installed
Run this and try again:
Expand Down
Binary file modified alphamesh_addon.zip
Binary file not shown.

0 comments on commit 8b86265

Please sign in to comment.