Skip to content

Commit

Permalink
Bump numpy req
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk committed Jul 31, 2024
1 parent c12acb2 commit 6a5b317
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
click>=8.1.3
colorama>=0.4.6
NREL-rex>=0.2.80
numpy>=1.22.0
numpy>=2.0.0
numpydoc>=1.5.0
pandas>=2.0.0
psutil>=5.9.2
Expand Down
2 changes: 1 addition & 1 deletion tests/test_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def make_fake_h5_chunks(temp_dir, features, shuffle=False):
"""
data = np.random.uniform(0, 20, (50, 50, 48))
lon, lat = np.meshgrid(np.linspace(-180, 0, 50), np.linspace(90, 0, 50))
gids = np.arange(np.product(lat.shape))
gids = np.arange(np.prod(lat.shape))
if shuffle:
np.random.shuffle(gids)

Expand Down

0 comments on commit 6a5b317

Please sign in to comment.