Skip to content

Commit

Permalink
Support numpy2 (#96)
Browse files Browse the repository at this point in the history
* make tests pass with numpy2

* version bump
  • Loading branch information
ewu63 authored Dec 10, 2024
1 parent 30aebba commit c339e9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion baseclasses/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.8.0"
__version__ = "1.8.1"

from .problems import (
AeroProblem,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_SolverHistory.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def setUp(self):
"Random Float": rng.random() - 0.5,
"Random Complex": complex(rng.random() - 0.5, rng.random() - 0.5),
"Random String": str(rng.integers(low=-100, high=100)),
"Random List": [rng.integers(low=-100, high=100)],
"Random List": [rng.integers(low=-100, high=100, dtype=int)],
"Don't print": rng.random(),
}
self.solverHistory.write(iterData)
Expand Down

0 comments on commit c339e9c

Please sign in to comment.