Skip to content

Commit 821d0ba

Browse files
committed
remove INSTALLED_VERSION from __all__
1 parent 5a4b092 commit 821d0ba

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
* Added `compas_rhino.DEFAULT_VERSION`.
1313
* Added `clean` option to `compas_rhino.install` to remove existing symlinks if they cannot be imported from the current environment.
14+
* Added `INSTALLED_VERSION` variable to `compas_rhino.install` to interally inform rhino version context post-installation steps.
1415

1516
### Changed
1617

src/compas_rhino/install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
__all__ = [
1616
'install',
1717
'installable_rhino_packages',
18-
'after_rhino_install',
19-
'INSTALLED_VERSION'
18+
'after_rhino_install'
2019
]
2120

2221
INSTALLED_VERSION = None
2322

23+
2424
def install(version=None, packages=None, clean=False):
2525
"""Install COMPAS for Rhino.
2626

0 commit comments

Comments
 (0)