Skip to content

Commit

Permalink
feat: allowing student versions (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue authored Jan 19, 2024
1 parent 2a4b66c commit ea28e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/geometry/core/connection/product_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def _check_minimal_versions(latest_installed_version: int) -> None:
Check that at least V232 is installed.
"""
if latest_installed_version < 232:
if abs(latest_installed_version) < 232:
msg = (
"PyAnsys Geometry is compatible with Ansys Products from version 23.2.1. "
+ "Please install Ansys products 23.2.1 or later."
Expand Down

0 comments on commit ea28e4e

Please sign in to comment.