Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/1980.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
add 261 version api versions list
2 changes: 1 addition & 1 deletion docker/linux/coreservice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ ENV LOG_LEVEL=2
ENV ANSYSLMD_LICENSE_FILE=""
ENV ANSYS_CI_INSTALL=/app/CADIntegration
ENV P_SCHEMA=/app/Schema/
ENV ANSYSCL251_DIR=/app/licensingclient/
ENV ANSYSCL252_DIR=/app/licensingclient/
ENV ANSYSCL261_DIR=/app/licensingclient/

# Add container labels
LABEL org.opencontainers.image.authors="ANSYS Inc."
Expand Down
2 changes: 1 addition & 1 deletion docker/windows/coreservice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ ENV LOG_LEVEL=2
ENV ANSYSLMD_LICENSE_FILE=""
ENV ANSYS_CI_INSTALL=C:/app/CADIntegration
ENV P_SCHEMA=C:/app/Schema
ENV ANSYSCL251_DIR=C:/app/licensingclient
ENV ANSYSCL252_DIR=C:/app/licensingclient
ENV ANSYSCL261_DIR=C:/app/licensingclient

# Add container labels
LABEL org.opencontainers.image.authors="ANSYS Inc."
Expand Down
3 changes: 2 additions & 1 deletion src/ansys/geometry/core/connection/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ class ApiVersions(Enum):
V_241 = 241
V_242 = 242
V_251 = 251
V_252 = LATEST = 252
V_252 = 252
V_261 = LATEST = 261

@staticmethod
def parse_input(version: Union[int, str, "ApiVersions"]) -> "ApiVersions":
Expand Down
2 changes: 2 additions & 0 deletions src/ansys/geometry/core/connection/docker_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ class GeometryContainers(Enum):
WINDOWS_25_2 = 9, "windows", "windows-25.2"
CORE_WINDOWS_25_2 = 10, "windows", "core-windows-25.2"
CORE_LINUX_25_2 = 11, "linux", "core-linux-25.2"
CORE_WINDOWS_26_1 = 10, "windows", "core-windows-26.1"
CORE_LINUX_26_1 = 11, "linux", "core-linux-26.1"


class LocalDockerInstance:
Expand Down
Loading