Skip to content

Commit

Permalink
Fix RH7 Installer Error
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-p-may committed Jan 12, 2024
1 parent c0f1f07 commit 7f1ef02
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Binary file modified hbph_installer.gh
Binary file not shown.
9 changes: 6 additions & 3 deletions honeybee_grasshopper_ph/src/HBPH Installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
python interpreter, and will download and install new Grasshopper components which
will be added to your Rhino / Grasshopper installation.
-
EM January 10, 2024
EM January 12, 2024
Args:
_install: (bool) Set to True to install Honeybee-PH on your computer.
Expand Down Expand Up @@ -67,11 +67,14 @@
COMPONENT = ghenv.Component # type: ignore
COMPONENT.Name = 'HBPH Installer'
COMPONENT.NickName = 'HBPHInstall'
COMPONENT.Message = 'JAN_10_2024'
COMPONENT.Message = 'JAN_12_2024'
COMPONENT.Category = 'Honeybee-PH'
COMPONENT.SubCategory = '00 | Utils'
COMPONENT.AdditionalHelpFromDocStrings = '0'
COMPONENT.ToggleObsolete(False)
try:
COMPONENT.ToggleObsolete(False)
except AttributeError:
pass # Rhino 7

# -- Required Versions
MIN_VER_RHINO = (7, 18)
Expand Down
Binary file modified honeybee_grasshopper_ph/user_objects/HBPH Installer.ghuser
Binary file not shown.

0 comments on commit 7f1ef02

Please sign in to comment.