diff --git a/doc/changelog.d/1257.maintenance.md b/doc/changelog.d/1257.maintenance.md new file mode 100644 index 0000000000..5b2fd7c749 --- /dev/null +++ b/doc/changelog.d/1257.maintenance.md @@ -0,0 +1 @@ +Fix: Volume mesh with Docker service in Windows diff --git a/pyproject.toml b/pyproject.toml index 5e2eb878dc..fab04b980d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -116,13 +116,13 @@ title_format = "## [{version}](https://github.com/ansys/pyprimemesh/releases/tag issue_format = "[#{issue}](https://github.com/ansys/pyprimemesh/pull/{issue})" [[tool.towncrier.type]] -directory = "added" -name = "Added" +directory = "breaking" +name = "Breaking" showcontent = true [[tool.towncrier.type]] -directory = "changed" -name = "Changed" +directory = "added" +name = "Added" showcontent = true [[tool.towncrier.type]] @@ -131,27 +131,32 @@ name = "Fixed" showcontent = true [[tool.towncrier.type]] -directory = "dependencies" -name = "Dependencies" +directory = "documentation" +name = "Documentation" showcontent = true [[tool.towncrier.type]] -directory = "miscellaneous" -name = "Miscellaneous" +directory = "dependencies" +name = "Dependencies" showcontent = true - [[tool.towncrier.type]] -directory = "documentation" -name = "Documentation" +directory = "maintenance" +name = "Maintenance" showcontent = true [[tool.towncrier.type]] -directory = "maintenance" -name = "Maintenance" +directory = "miscellaneous" +name = "Miscellaneous" showcontent = true [[tool.towncrier.type]] directory = "test" name = "Test" showcontent = true + +[[tool.towncrier.type]] +directory = "changed" +name = "Changed" +showcontent = true + diff --git a/src/ansys/meshing/prime/internals/utils.py b/src/ansys/meshing/prime/internals/utils.py index 1da69aa421..ea34b2dfc1 100644 --- a/src/ansys/meshing/prime/internals/utils.py +++ b/src/ansys/meshing/prime/internals/utils.py @@ -275,7 +275,7 @@ def launch_prime_github_container( environment = {'ANSYSLMD_LICENSE_FILE': license_file} # Prepare command arguments - command = ['--port', str(port)] + command = ['--port', str(port), '--shm-size=4g'] # Set default connection type if not provided if connection_type is None: