diff --git a/.github/workflows/publish_version.yml b/.github/workflows/publish_version.yml index 1bf86aa..68082f3 100644 --- a/.github/workflows/publish_version.yml +++ b/.github/workflows/publish_version.yml @@ -21,7 +21,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: cubertgmbh/cuvis_pyil:3.5.0-ubuntu24.04 + image: cubertgmbh/cuvis_pyil:3.5.3-ubuntu24.04 permissions: contents: read diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 110281e..5ee5942 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: tests: runs-on: ubuntu-latest container: - image: cubertgmbh/cuvis_pyil:3.5.0-ubuntu24.04 + image: cubertgmbh/cuvis_pyil:3.5.3-ubuntu24.04 steps: - name: Checkout uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 5855dae..df778ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "cuvis" -version = "3.5.1.0" +version = "3.5.3.0" description = "CUVIS Python SDK." readme = "README.md" requires-python = ">=3.9" diff --git a/tests/test_general.py b/tests/test_general.py index 549070b..7e950d2 100644 --- a/tests/test_general.py +++ b/tests/test_general.py @@ -30,7 +30,7 @@ def test_wrapper_version(sdk_initialized): """Test wrapper version retrieval.""" version = cuvis.General.wrapper_version() assert isinstance(version, str) - assert "3.5.1" in version # Current wrapper version + assert "3.5.3" in version # Current wrapper version # def test_sdk_initialization_and_shutdown():