Skip to content

Commit

Permalink
Update Python version check to include 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbeSneyders committed Feb 5, 2024
1 parent 1c3a1d8 commit 6417f17
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/pipeline.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@
},
{
"cell_type": "markdown",
"metadata": {
"jp-MarkdownHeadingCollapsed": true
},
"metadata": {},
"source": [
"## Environment\n",
"\n",
Expand All @@ -53,8 +51,8 @@
"outputs": [],
"source": [
"import sys\n",
"if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 11, 0):\n",
" raise Exception(f\"A Python version between 3.8 and 3.10 is required. You are running {sys.version}\")"
"if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 12, 0):\n",
" raise Exception(f\"A Python version between 3.8 and 3.11 is required. You are running {sys.version}\")"
]
},
{
Expand Down

0 comments on commit 6417f17

Please sign in to comment.