forked from pytorch/opacus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the doctest due to numpy 2.0 (pytorch#654)
Summary: Pull Request resolved: pytorch#654 Doctest fails due to numpy's upgrade into 2.0, which changes the way of printing. astropy/astropy#15095 Reviewed By: EnayatUllah Differential Revision: D58873298 fbshipit-source-id: 5c4a21ff590c70b9643a1d921bc32b258e215616
- Loading branch information
1 parent
3619619
commit 1235e1e
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
numpy>=1.15 | ||
numpy>=1.15,<2.0 | ||
torch>=2.0 | ||
scipy>=1.2 | ||
opt-einsum>=3.3.0 |