From f54400526e6b915758c320403fce4a316c0dd854 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Roos?= Date: Wed, 14 Aug 2024 13:49:38 +0200 Subject: [PATCH] support of dpf server 9.0 (2025R1 pre0) --- .github/workflows/ci_cd.yml | 1 + doc/source/intro.rst | 2 ++ tox.ini | 1 + 3 files changed, 4 insertions(+) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 731f2ec72..f0813f114 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -73,6 +73,7 @@ jobs: # if other containers must be tested. run: | docker pull ghcr.io/ansys/pydpf-composites:${{ env.CONTAINER_TAG }} + docker pull ghcr.io/ansys/pydpf-composites:2025r1_pre0 docker pull ghcr.io/ansys/pydpf-composites:2024r2_pre1 docker pull ghcr.io/ansys/pydpf-composites:2024r2_pre0 docker pull ghcr.io/ansys/pydpf-composites:2024r1_pre0 diff --git a/doc/source/intro.rst b/doc/source/intro.rst index 80f0a214d..a2a7377d3 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -112,6 +112,8 @@ By default the DPF server is started from the latest Ansys installer. To choose * - Server version - ansys.dpf.composites Python module version + * - 9.0 (Ansys 2025 R1 pre0) + - 0.3.0 and later * - 8.1 (Ansys 2024 R2 pre1) - 0.3.0 and later * - 8.0 (Ansys 2024 R2 pre0) diff --git a/tox.ini b/tox.ini index 7c820684f..0e8778c1f 100644 --- a/tox.ini +++ b/tox.ini @@ -32,6 +32,7 @@ setenv = commands = poetry install -E test poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=latest {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} + poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2025r1_pre0 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2024r2_pre1 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2024r2_pre0 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2024r1 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv}