Skip to content

Commit

Permalink
merged main
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi-kumar-pilla committed Nov 19, 2024
1 parent be26fe6 commit 9a17a2e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions package/kedro_viz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ class KedroVizPythonVersionWarning(UserWarning):
"""Custom class for warnings about incompatibilities with Python versions."""


<<<<<<< HEAD
if sys.version_info >= (3, 14):
=======
if sys.version_info >= (3, 13):
>>>>>>> e91d156e6b37bd6f38aa4ce2bfd08095a4134239
warnings.warn(
"""Please be advised that Kedro Viz is not yet fully
compatible with the Python version you are currently using.""",
Expand Down
5 changes: 0 additions & 5 deletions package/tests/test_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,8 @@


def test_import_kedro_viz_with_no_official_support_emits_warning(mocker):
<<<<<<< HEAD
"""Test importing kedro Viz with python>=3.14 and controlled warnings should work"""
mocker.patch("kedro_viz.sys.version_info", (3, 14))
=======
"""Test importing kedro Viz with python>=3.13 and controlled warnings should work"""
mocker.patch("kedro_viz.sys.version_info", (3, 13))
>>>>>>> e91d156e6b37bd6f38aa4ce2bfd08095a4134239

# We use the parent class to avoid issues with `exec_module`
with pytest.warns(UserWarning) as record:
Expand Down

0 comments on commit 9a17a2e

Please sign in to comment.