diff --git a/examples/1_Intro_to_HSP2.ipynb b/examples/1_Intro_to_HSP2.ipynb index 67516224..4faf5d70 100644 --- a/examples/1_Intro_to_HSP2.ipynb +++ b/examples/1_Intro_to_HSP2.ipynb @@ -317,6 +317,26 @@ "# TODO: need to fix hsp2 version links" ] }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "# packages in environment at /Users/aaufdenkampe/miniconda3/envs/hsp2_py310:\n", + "#\n", + "# Name Version Build Channel\n", + "hsp2 0.11.0a1 pypi_0 pypi\n" + ] + } + ], + "source": [ + "!conda list hsp2" + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/src/hsp2/hsp2/__init__.py b/src/hsp2/hsp2/__init__.py index 9112f6cc..695a77b0 100644 --- a/src/hsp2/hsp2/__init__.py +++ b/src/hsp2/hsp2/__init__.py @@ -9,5 +9,4 @@ from hsp2.hsp2.mainDoE import main as mainDoE from hsp2.hsp2.utilities import flowtype, versions -# __version__ = version("hsp2") -# from _version import __version__ +__version__ = version("hsp2") diff --git a/src/hsp2/hsp2tools/__init__.py b/src/hsp2/hsp2tools/__init__.py index 30f105d8..3abb0e8d 100644 --- a/src/hsp2/hsp2tools/__init__.py +++ b/src/hsp2/hsp2tools/__init__.py @@ -14,3 +14,5 @@ from .readUCI import readUCI from .readWDM import readWDM from .restart import restart + +__version__ = version("hsp2")