Skip to content

Commit 6a9ce8b

Browse files
committed
Merge branch 'main' into release/0.4
2 parents cbd6a58 + 8280e12 commit 6a9ce8b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ tests = [
3535
"pyvista==0.43.3",
3636
"matplotlib==3.8.3",
3737
"numpy==1.26.4",
38-
"pytest==8.0.2",
38+
"pytest==8.1.1",
3939
"pytest-cov==4.1.0",
4040
"joblib==1.3.2",
4141
"pandas==2.2.1",
@@ -66,7 +66,7 @@ doc = [
6666
"joblib==1.3.2",
6767
"scikit-learn==1.4.1.post1",
6868
"ipython==8.22.2",
69-
"jupyterlab==4.1.2",
69+
"jupyterlab==4.1.4",
7070
"sphinx-jinja==2.0.2",
7171
"sphinx-autoapi==3.0.0",
7272
]

src/ansys/dyna/core/solver/launcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
LOCALHOST = "127.0.0.1"
2222
DYNA_DEFAULT_PORT = 5000
23-
SERVER_SOLVER_VERSION = "v0.4.6"
23+
SERVER_SOLVER_VERSION = "v0.4.12"
2424
MAX_MESSAGE_LENGTH = 8 * 1024**2
2525

2626

@@ -101,7 +101,7 @@ def launch_grpc(port=DYNA_DEFAULT_PORT, ip=LOCALHOST, server_path="") -> tuple:
101101
if len(server_path) == 0:
102102
# server_path = os.getenv("ANSYS_PYDYNA_SOLVER_SERVER_PATH")
103103
# if server_path is None:
104-
url = "https://github.com/ansys/pydyna/releases/download/v0.4.6/ansys-pydyna-solver-server.zip"
104+
url = "https://github.com/ansys/pydyna/releases/download/v0.4.12/ansys-pydyna-solver-server.zip"
105105
directory = DynaSolver.get_appdata_path()
106106
filename = directory + os.sep + "ansys-pydyna-solver-server.zip"
107107
server_package = directory + os.sep + "ansys-pydyna-solver-server"

0 commit comments

Comments
 (0)