Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/1257.maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix: Volume mesh with Docker service in Windows
31 changes: 18 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand All @@ -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

2 changes: 1 addition & 1 deletion src/ansys/meshing/prime/internals/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading