Skip to content

Commit

Permalink
Updating version to 1.7.5 (#348)
Browse files Browse the repository at this point in the history
Suppressing FP bandit warning
Adding Module-Analysis.ipynb notebook to tools
  • Loading branch information
ianhelle committed Mar 23, 2022
1 parent 3af4379 commit 3587ed4
Show file tree
Hide file tree
Showing 3 changed files with 357 additions and 3 deletions.
2 changes: 1 addition & 1 deletion msticpy/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Version file."""
VERSION = "1.7.0"
VERSION = "1.7.5"
4 changes: 2 additions & 2 deletions msticpy/nbtools/azure_ml_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ def check_python_ver(min_py_ver: Union[str, Tuple] = MIN_PYTHON_VER_DEF):
_disp_html("Checking Python kernel version...")
if sys_ver < min_py_ver:
# Bandit SQL inject error found here
_disp_html(
_disp_html( # nosec
f"""
<h4><font color='red'>This notebook requires a later
(Python) kernel version.</h4></font>
Select a kernel from the notebook toolbar (above), that is Python
{min_py_ver} or later (Python 3.8 recommended)<br>
""" # nosec
"""
)
_disp_html(
f"""
Expand Down

0 comments on commit 3587ed4

Please sign in to comment.