Skip to content

Commit 28d263f

Browse files
fix: Move to common folder and add latest changes
1 parent 608ced0 commit 28d263f

File tree

10 files changed

+5
-4
lines changed

10 files changed

+5
-4
lines changed
File renamed without changes.

src/ansys/tools/path/path.py renamed to src/ansys/tools/common/path/path.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
CONFIG_FILE_NAME = "config.txt"
4848

4949
SUPPORTED_ANSYS_VERSIONS: SUPPORTED_VERSIONS_TYPE = {
50+
261: "2026R1",
5051
252: "2025R2",
5152
251: "2025R1",
5253
242: "2024R2",
File renamed without changes.

tests/path/integration/test_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727

2828
import pytest
2929

30-
from ansys.tools.path import (
30+
from ansys.tools.common.path import (
3131
clear_configuration,
3232
find_mapdl,
3333
get_available_ansys_installations,
3434
save_mapdl_path,
3535
)
36-
from ansys.tools.path.path import CONFIG_FILE
36+
from ansys.tools.common.path.path import CONFIG_FILE
3737

3838
skip_if_not_ansys_local = pytest.mark.skipif(
3939
os.environ.get("ANSYS_LOCAL", "").upper() != "TRUE", reason="Skipping on CI"

tests/path/unit/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
import os
2525

26-
from ansys.tools import __version__
26+
from ansys.tools.common import __version__
2727

2828

2929
def test_pkg_version():

tests/path/unit/test_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
import pyfakefs # noqa
3333
import pytest
3434

35-
from ansys.tools.path import (
35+
from ansys.tools.common.path import (
3636
LOG,
3737
SETTINGS_DIR,
3838
change_default_ansys_path,

0 commit comments

Comments
 (0)