diff --git a/code/python/src/graphs/graph.py b/code/python/src/graphs/graph.py index 08b3b97..23b0d4f 100644 --- a/code/python/src/graphs/graph.py +++ b/code/python/src/graphs/graph.py @@ -7,7 +7,7 @@ from __future__ import annotations; -from src.local.typing import *; +from src.thirdparty.typing import *; # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # EXPORTS diff --git a/code/python/src/graphs/tarjan.py b/code/python/src/graphs/tarjan.py index bbc2e26..c3f02a1 100644 --- a/code/python/src/graphs/tarjan.py +++ b/code/python/src/graphs/tarjan.py @@ -11,7 +11,7 @@ from dataclasses import dataclass; from dataclasses import field from platform import node; -from src.local.typing import *; +from src.thirdparty.typing import *; from src.core.log import *; from src.stacks.stack import *; diff --git a/code/python/src/stacks/stack.py b/code/python/src/stacks/stack.py index 0481f72..497a8d1 100644 --- a/code/python/src/stacks/stack.py +++ b/code/python/src/stacks/stack.py @@ -5,7 +5,7 @@ # IMPORTS # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -from src.local.typing import *; +from src.thirdparty.typing import *; # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # EXPORTS diff --git a/code/python/src/string_alignment/hirschberg.py b/code/python/src/string_alignment/hirschberg.py index 5c27c33..fabf19a 100644 --- a/code/python/src/string_alignment/hirschberg.py +++ b/code/python/src/string_alignment/hirschberg.py @@ -6,8 +6,8 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ from __future__ import annotations; -from src.local.typing import *; -from src.local.maths import *; +from src.thirdparty.typing import *; +from src.thirdparty.maths import *; diff --git a/code/python/src/local/__init__.py b/code/python/src/thirdparty/__init__.py similarity index 100% rename from code/python/src/local/__init__.py rename to code/python/src/thirdparty/__init__.py diff --git a/code/python/src/local/config.py b/code/python/src/thirdparty/config.py similarity index 100% rename from code/python/src/local/config.py rename to code/python/src/thirdparty/config.py diff --git a/code/python/src/local/io.py b/code/python/src/thirdparty/io.py similarity index 100% rename from code/python/src/local/io.py rename to code/python/src/thirdparty/io.py diff --git a/code/python/src/local/maths.py b/code/python/src/thirdparty/maths.py similarity index 100% rename from code/python/src/local/maths.py rename to code/python/src/thirdparty/maths.py diff --git a/code/python/src/local/misc.py b/code/python/src/thirdparty/misc.py similarity index 100% rename from code/python/src/local/misc.py rename to code/python/src/thirdparty/misc.py diff --git a/code/python/src/local/system.py b/code/python/src/thirdparty/system.py similarity index 100% rename from code/python/src/local/system.py rename to code/python/src/thirdparty/system.py diff --git a/code/python/src/local/typing.py b/code/python/src/thirdparty/typing.py similarity index 100% rename from code/python/src/local/typing.py rename to code/python/src/thirdparty/typing.py diff --git a/code/python/src/travel/naive.py b/code/python/src/travel/naive.py index 3748925..d9b2539 100644 --- a/code/python/src/travel/naive.py +++ b/code/python/src/travel/naive.py @@ -6,8 +6,8 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ from __future__ import annotations; -from src.local.typing import *; -from src.local.maths import *; +from src.thirdparty.typing import *; +from src.thirdparty.maths import *; # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # EXPORTS diff --git a/code/python/tests/test_core/__init__.py b/code/python/tests/tests_core/__init__.py similarity index 100% rename from code/python/tests/test_core/__init__.py rename to code/python/tests/tests_core/__init__.py diff --git a/code/python/tests/test_core/conftest.py b/code/python/tests/tests_core/conftest.py similarity index 100% rename from code/python/tests/test_core/conftest.py rename to code/python/tests/tests_core/conftest.py diff --git a/code/python/tests/test_core/test_log.py b/code/python/tests/tests_core/test_log.py similarity index 100% rename from code/python/tests/test_core/test_log.py rename to code/python/tests/tests_core/test_log.py diff --git a/code/python/tests/test_graphs/__init__.py b/code/python/tests/tests_graphs/__init__.py similarity index 100% rename from code/python/tests/test_graphs/__init__.py rename to code/python/tests/tests_graphs/__init__.py diff --git a/code/python/tests/test_graphs/conftest.py b/code/python/tests/tests_graphs/conftest.py similarity index 100% rename from code/python/tests/test_graphs/conftest.py rename to code/python/tests/tests_graphs/conftest.py diff --git a/code/python/tests/test_graphs/test_graph.py b/code/python/tests/tests_graphs/test_graph.py similarity index 100% rename from code/python/tests/test_graphs/test_graph.py rename to code/python/tests/tests_graphs/test_graph.py diff --git a/code/python/tests/test_graphs/test_tarjan.py b/code/python/tests/tests_graphs/test_tarjan.py similarity index 98% rename from code/python/tests/test_graphs/test_tarjan.py rename to code/python/tests/tests_graphs/test_tarjan.py index e9e287c..16bef61 100644 --- a/code/python/tests/test_graphs/test_tarjan.py +++ b/code/python/tests/tests_graphs/test_tarjan.py @@ -12,7 +12,7 @@ from pytest import lazy_fixture; from unittest import TestCase; from unittest.mock import patch; -from src.local.typing import *; +from src.thirdparty.typing import *; from src.graphs.graph import *; from src.graphs.tarjan import *; diff --git a/code/python/tests/test_stacks/__init__.py b/code/python/tests/tests_stacks/__init__.py similarity index 100% rename from code/python/tests/test_stacks/__init__.py rename to code/python/tests/tests_stacks/__init__.py diff --git a/code/python/tests/test_stacks/conftest.py b/code/python/tests/tests_stacks/conftest.py similarity index 100% rename from code/python/tests/test_stacks/conftest.py rename to code/python/tests/tests_stacks/conftest.py diff --git a/code/python/tests/test_stacks/test_stack.py b/code/python/tests/tests_stacks/test_stack.py similarity index 100% rename from code/python/tests/test_stacks/test_stack.py rename to code/python/tests/tests_stacks/test_stack.py