Skip to content

Commit

Permalink
ohbm 2023: update version check
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmetNSimsek authored May 8, 2024
1 parent 857e693 commit a5f3c6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ohbm-2023-example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"outputs": [],
"source": [
"import siibra as sb\n",
"assert sb.__version__ == \"1.0a01\"\n",
"from packaging.version import Version\n",
"assert Version(sb.__version__) >= Version('1.0a08')\n",
"from nilearn import plotting\n",
"import matplotlib.pyplot as plt\n",
"%matplotlib notebook"
Expand Down

0 comments on commit a5f3c6e

Please sign in to comment.