forked from d2l-ai/d2l-en
-
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.
freeze d2l lib for v1.0.0 release (d2l-ai#2545)
* d2l library 1.0.0 release freeze * CI: disable caching for scratch tests * Use numpy==1.24.4 for py3.8 support * Use numpy==1.23.5 * PyTorch: Fix numpy object to float conversion * MXNet: Fix mxnet arange issue * CI: enable caching switchback
- Loading branch information
1 parent
a3360ed
commit 3ba74ec
Showing
4 changed files
with
28 additions
and
13 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
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 |
---|---|---|
|
@@ -2,18 +2,18 @@ | |
import d2l | ||
|
||
requirements = [ | ||
'jupyter', | ||
'numpy<=1.23.5', | ||
'matplotlib', | ||
'matplotlib-inline', | ||
'requests', | ||
'pandas' | ||
'jupyter==1.0.0', | ||
'numpy==1.23.5', | ||
'matplotlib==3.7.2', | ||
'matplotlib-inline==0.1.6', | ||
'requests==2.31.0', | ||
'pandas==2.0.3' | ||
] | ||
|
||
setup( | ||
name='d2l', | ||
version=d2l.__version__, | ||
python_requires='>=3.5', | ||
python_requires='>=3.8', | ||
author='D2L Developers', | ||
author_email='[email protected]', | ||
url='https://d2l.ai', | ||
|