Merge branch 'develop' into documentation

This commit is contained in:
fjosw 2023-03-09 14:26:18 +00:00
commit dd14b35905
2 changed files with 17 additions and 15 deletions

View file

@ -9,7 +9,10 @@
"source": [
"import pyerrors as pe\n",
"import numpy as np\n",
"import matplotlib.pyplot as plt"
"import matplotlib.pyplot as plt\n",
"from packaging import version\n",
"if version.parse(pe.__version__) < version.parse(\"2.6.0\"):\n",
" raise Exception(f\"v2.6.0 or newer is required for this example, you are using {pe.__version__}\")"
]
},
{