Skip to content

Commit

Permalink
fix-2025
Browse files Browse the repository at this point in the history
  • Loading branch information
quantresearch1 committed Dec 3, 2024
1 parent 6769ea4 commit e574144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/highspy/highs.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# backwards typing support information for HighspyArray
np_version = tuple(map(int, np.__version__.split('.')))
if sys.version_info >= (3, 9) and np_version >= (1.22.0):
if sys.version_info >= (3, 9) and np_version >= (1,22,0):
ndarray_object_type = np.ndarray[Any, np.dtype[np.object_]]
else:
ndarray_object_type = np.ndarray
Expand Down

0 comments on commit e574144

Please sign in to comment.