From 856b837a930dafd3b204e91d76bcab1764b41752 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jun 2025 08:15:29 +0000 Subject: [PATCH 1/3] build(pip): bump ansys-api-speos from 0.15.2 to 0.15.3 Bumps [ansys-api-speos](https://github.com/ansys/ansys-api-speos) from 0.15.2 to 0.15.3. - [Release notes](https://github.com/ansys/ansys-api-speos/releases) - [Commits](https://github.com/ansys/ansys-api-speos/compare/v0.15.2...v0.15.3) --- updated-dependencies: - dependency-name: ansys-api-speos dependency-version: 0.15.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 275b84e82..a9cfc56a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dependencies=[ "protobuf>=3.20,<7", "grpcio>=1.50.0,<1.71", "grpcio-health-checking>=1.45.0,<1.68", - "ansys-api-speos==0.15.2", + "ansys-api-speos==0.15.3", "ansys-tools-path>=0.3.1", "numpy>=1.20.3,<3", "comtypes>=1.4,<1.5", From a05f2d2856d30e9fdd4bd9cfcc21bee45c2b657d Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Mon, 30 Jun 2025 08:17:06 +0000 Subject: [PATCH 2/3] chore: adding changelog file 647.dependencies.md [dependabot-skip] --- doc/changelog.d/647.dependencies.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/647.dependencies.md diff --git a/doc/changelog.d/647.dependencies.md b/doc/changelog.d/647.dependencies.md new file mode 100644 index 000000000..8213ab617 --- /dev/null +++ b/doc/changelog.d/647.dependencies.md @@ -0,0 +1 @@ +Bump ansys-api-speos from 0.15.2 to 0.15.3 \ No newline at end of file From f2d177f891eafb6f35165238a6d74ba81d25dbda Mon Sep 17 00:00:00 2001 From: Elodie Chamblas Date: Mon, 30 Jun 2025 12:13:27 +0200 Subject: [PATCH 3/3] Fix _faces_to_chunks --- src/ansys/speos/core/kernel/face.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/speos/core/kernel/face.py b/src/ansys/speos/core/kernel/face.py index 8159b9cd9..8d5796e54 100644 --- a/src/ansys/speos/core/kernel/face.py +++ b/src/ansys/speos/core/kernel/face.py @@ -262,7 +262,7 @@ def _faces_to_chunks( sizes=[ len(message.vertices), len(message.facets), - len(message.texture_coordinates_channels), + len(message.vertices_data), ], ) )