Skip to content

Commit 8e40cb7

Browse files
Merge pull request #22 from pyansys/devops/variable-interop-rename
Adopt rename of Python variable interop library.
2 parents 316f643 + 10461ff commit 8e40cb7

File tree

8 files changed

+41
-41
lines changed

8 files changed

+41
-41
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: setup-git-credentials
1919
run: |
20-
git config --global url.https://${{ secrets.PHX_NIGHTLY_SECRET }}@github.com/pyansys/ansys-common-variableinterop.insteadOf https://github.com/pyansys/ansys-common-variableinterop
20+
git config --global url.https://${{ secrets.PHX_NIGHTLY_SECRET }}@github.com/pyansys/pyansys-tools-variableinterop.insteadOf https://github.com/pyansys/pyansys-tools-variableinterop
2121
2222
- uses: actions/checkout@v2
2323
with:

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
steps:
2424
- name: setup-git-credentials
2525
run: |
26-
git config --global url.https://${{ secrets.PHX_NIGHTLY_SECRET }}@github.com/pyansys/ansys-common-variableinterop.insteadOf https://github.com/pyansys/ansys-common-variableinterop
27-
26+
git config --global url.https://${{ secrets.PHX_NIGHTLY_SECRET }}@github.com/pyansys/pyansys-tools-variableinterop.insteadOf https://github.com/pyansys/pyansys-tools-variableinterop
27+
2828
- uses: actions/checkout@v2
2929
with:
3030
token: ${{ secrets.PHX_NIGHTLY_SECRET }}

.github/workflows/style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
steps:
1818
- name: setup-git-credentials
1919
run: |
20-
git config --global url.https://${{ secrets.PHX_NIGHTLY_SECRET }}@github.com/pyansys/ansys-common-variableinterop.insteadOf https://github.com/pyansys/ansys-common-variableinterop
21-
20+
git config --global url.https://${{ secrets.PHX_NIGHTLY_SECRET }}@github.com/pyansys/pyansys-tools-variableinterop.insteadOf https://github.com/pyansys/pyansys-tools-variableinterop
21+
2222
- uses: actions/checkout@v2
2323
with:
2424
token: ${{ secrets.PHX_NIGHTLY_SECRET }}

poetry.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ packages = [
2727
[tool.poetry.dependencies]
2828
python = ">=3.8,<4.0"
2929
numpy = "^1.22.4"
30-
# ansys-common-variableinterop = "^0.1.dev0"
31-
ansys-common-variableinterop = {git = "https://github.com/pyansys/ansys-common-variableinterop.git", rev = "ac4311c"}
30+
31+
pyansys-tools-variableinterop = {git = "https://github.com/pyansys/pyansys-tools-variableinterop.git", rev = "0988df6c6aa4df885082cc4dd88acdcecdc97b68"}
3232

3333
Sphinx = {version="^4.4", optional=true}
3434
numpydoc = {version="^1.2", optional=true}

src/ansys/engineeringworkflow/api/datatypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from enum import Enum
66
from typing import Optional
77

8-
from ansys.common.variableinterop import IVariableValue
8+
from ansys.tools.variableinterop import IVariableValue
99

1010

1111
@dataclass(frozen=True)

src/ansys/engineeringworkflow/api/iasyncworkflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from os import PathLike
1818
from typing import AbstractSet, Collection, Mapping, Optional, Union
1919

20-
from ansys.common.variableinterop import CommonVariableMetadata, IVariableValue, VariableState
20+
from ansys.tools.variableinterop import CommonVariableMetadata, IVariableValue, VariableState
2121

2222
from .datatypes import Property, WorkflowEngineInfo, WorkflowInstanceState
2323

src/ansys/engineeringworkflow/api/iworkflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from os import PathLike
1818
from typing import AbstractSet, Mapping, Optional, Union
1919

20-
from ansys.common.variableinterop import (
20+
from ansys.tools.variableinterop import (
2121
CommonVariableMetadata,
2222
IVariableValue,
2323
VariableState,

0 commit comments

Comments
 (0)