Skip to content

Commit 2e89f2b

Browse files
committed
feat: allowing student versions (#938)
1 parent d74509c commit 2e89f2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansys/geometry/core/connection/product_instance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def _check_minimal_versions(latest_installed_version: int) -> None:
405405
406406
Check that at least V232 is installed.
407407
"""
408-
if latest_installed_version < 232:
408+
if abs(latest_installed_version) < 232:
409409
msg = (
410410
"PyAnsys Geometry is compatible with Ansys Products from version 23.2.1. "
411411
+ "Please install Ansys products 23.2.1 or later."

0 commit comments

Comments
 (0)