Skip to content

Commit a3043d1

Browse files
feat: add 261 version api versions list (#1980)
Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent b5e3da8 commit a3043d1

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

doc/changelog.d/1980.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
add 261 version api versions list

docker/linux/coreservice/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ ENV LOG_LEVEL=2
3232
ENV ANSYSLMD_LICENSE_FILE=""
3333
ENV ANSYS_CI_INSTALL=/app/CADIntegration
3434
ENV P_SCHEMA=/app/Schema/
35-
ENV ANSYSCL251_DIR=/app/licensingclient/
3635
ENV ANSYSCL252_DIR=/app/licensingclient/
36+
ENV ANSYSCL261_DIR=/app/licensingclient/
3737

3838
# Add container labels
3939
LABEL org.opencontainers.image.authors="ANSYS Inc."

docker/windows/coreservice/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ ENV LOG_LEVEL=2
3434
ENV ANSYSLMD_LICENSE_FILE=""
3535
ENV ANSYS_CI_INSTALL=C:/app/CADIntegration
3636
ENV P_SCHEMA=C:/app/Schema
37-
ENV ANSYSCL251_DIR=C:/app/licensingclient
3837
ENV ANSYSCL252_DIR=C:/app/licensingclient
38+
ENV ANSYSCL261_DIR=C:/app/licensingclient
3939

4040
# Add container labels
4141
LABEL org.opencontainers.image.authors="ANSYS Inc."

src/ansys/geometry/core/connection/backend.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ class ApiVersions(Enum):
108108
V_241 = 241
109109
V_242 = 242
110110
V_251 = 251
111-
V_252 = LATEST = 252
111+
V_252 = 252
112+
V_261 = LATEST = 261
112113

113114
@staticmethod
114115
def parse_input(version: Union[int, str, "ApiVersions"]) -> "ApiVersions":

src/ansys/geometry/core/connection/docker_instance.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ class GeometryContainers(Enum):
7676
WINDOWS_25_2 = 9, "windows", "windows-25.2"
7777
CORE_WINDOWS_25_2 = 10, "windows", "core-windows-25.2"
7878
CORE_LINUX_25_2 = 11, "linux", "core-linux-25.2"
79+
CORE_WINDOWS_26_1 = 10, "windows", "core-windows-26.1"
80+
CORE_LINUX_26_1 = 11, "linux", "core-linux-26.1"
7981

8082

8183
class LocalDockerInstance:

0 commit comments

Comments
 (0)