Skip to content

Commit 83b08c5

Browse files
authored
TST: Remove use of deprecated numpy.int (#784)
1 parent 68f79af commit 83b08c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/crs/test_crs_cf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_cf_from_numpy_dtypes():
4848
"grid_mapping_name": "lambert_conformal_conic",
4949
"standard_parallel": numpy.array([60, 30], dtype="f4"),
5050
"longitude_of_central_meridian": numpy.float32(0),
51-
"latitude_of_projection_origin": numpy.int(45),
51+
"latitude_of_projection_origin": numpy.int32(45),
5252
}
5353
crs = CRS.from_cf(cf)
5454
with pytest.warns(UserWarning):

0 commit comments

Comments
 (0)