-
Notifications
You must be signed in to change notification settings - Fork 14
Include ADO's 25R2/sp01 changes #1077
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
base: release/0.9.0
Are you sure you want to change the base?
Conversation
Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com>
…uild (#1059) Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Co-authored-by: afernand <alex.fernandezluces@ansys.com>
….10.0 in the general-dependencies group (#1073) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Integrates ADO’s 25R2/sp01 updates into the Prime meshing internals:
- Cleans up and centralizes logging in the Docker-based server launch path
- Adds preprocessing to sanitize hyperfoam coefficient data
- Fixes a typo in the hyperfoam coefficient string assembly
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
File | Description |
---|---|
src/ansys/meshing/prime/internals/launcher.py | Removed an inconsistent logger call and standardized output when using Docker server |
src/ansys/meshing/prime/core/mapdlcdbexportutils.py | Introduced float conversion for coefficient data and corrected a variable typo in string formatting |
Comments suppressed due to low confidence (3)
src/ansys/meshing/prime/core/mapdlcdbexportutils.py:896
- Introduce unit tests for the new data normalization logic to ensure None values are skipped and all numeric strings are correctly converted to floats.
data = {
src/ansys/meshing/prime/internals/launcher.py:266
- [nitpick] Use the project’s logging framework instead of print to maintain consistency and log levels. For example:
logging.getLogger('PyPrimeMesh').info('Using server from container: %s', container_name)
.
print('using server from docker : The container name ', container_name)
src/ansys/meshing/prime/internals/launcher.py:271
- The removed logger call used a comma without a format specifier, which would log a tuple rather than interpolating the container name. If reintroducing, use a format string or pass
%s
in the message.
)
The documentation for this pull request will be available at https://prime.docs.pyansys.com/pull/1077. Please allow some time for the documentation to be deployed. |
Description
Please provide a brief description of the changes made in this pull request.
Issue linked
Please mention the issue number or describe the problem this pull request addresses.
Checklist
feat: wrap with feature edges
)