Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

using explicit version instead of latest #982

Open
wants to merge 2 commits into
base: release/0.7
Choose a base branch
from
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/982.maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
using explicit version instead of latest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "ansys-meshing-prime"
version = "0.7.0"
version = "0.7.1"
description = "PyPrimeMesh is a Python client to Ansys Prime Server, which delivers core Ansys meshing technology."
readme = "README.md"
requires-python = ">=3.10,<4"
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/meshing/prime/internals/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def launch_remote_prime(
This method creates a file transfer service that is available on Ansys Lab.
"""
if version is None:
version = 'latest'
version = '25.1.0'

pim = pypim.connect()
instance = pim.create_instance(product_name='prime', product_version=version)
Expand Down
Loading