-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update scripts: cleaner design and all dependencies in requirements.txt
Former-commit-id: c16febf
- Loading branch information
1 parent
aaf0995
commit 483f3bb
Showing
6 changed files
with
74 additions
and
88 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
# .readthedocs.yml | ||
|
||
build: | ||
image: latest | ||
|
||
# Use Python 3.6, specifically to support f-string. | ||
# TODO: change to Python 3.7 once ReadtheDocs approves the PR | ||
python: | ||
version: 3.6 |
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,21 +1,45 @@ | ||
cloudpickle>=0.5.3 | ||
cython>=0.28.4 | ||
pyyaml>=3.12 | ||
setuptools>=39.0.1 | ||
numpy>=1.14.5 | ||
# Update: 2018-10-11 | ||
|
||
# System-related | ||
mkl>=2019.0 | ||
mkl-include>=2019.0 | ||
cmake>=3.12.0 | ||
cython>=0.28.5 | ||
cffi>=1.11.5 | ||
typing>=3.6.6 | ||
msgpack>=0.5.6 | ||
setuptools>=40.4.3 | ||
wheel>=0.32.1 | ||
twine>=1.12.1 | ||
|
||
# Common | ||
jupyterlab >= 0.35.0 | ||
numpy>=1.15.2 | ||
scipy>=1.1.0 | ||
matplotlib>=2.2.2 | ||
scikit-image>=0.14.0 | ||
scikit-learn>=0.19.2 | ||
imageio>=2.3.0 | ||
pandas>=0.23.4 | ||
cloudpickle>=0.6.1 | ||
pyyaml>=3.13 | ||
colored>=1.3.93 | ||
|
||
# Testing, PEP8 code quality | ||
pytest>=3.8.2 | ||
flake8>=3.5.0 | ||
|
||
# Image, Video | ||
scikit-image>=0.14.1 | ||
scikit-learn>=0.20.0 | ||
pillow>=5.3.0 | ||
imageio>=2.4.1 | ||
pyglet>=1.3.2 | ||
pandas>=0.23.3 | ||
seaborn>=0.8.1 | ||
jupyterlab >= 0.32.1 | ||
gym>= 0.10.5 | ||
|
||
# Plotting | ||
matplotlib>=3.0.0 | ||
seaborn>=0.9.0 | ||
|
||
# RL | ||
gym>= 0.10.8 | ||
cma>=2.6.0 | ||
pytest>=3.6.3 | ||
flake8>=3.5.0 | ||
sphinx>=1.7.6 | ||
sphinx_rtd_theme>=0.4.0 | ||
colored>=1.3.93 | ||
|
||
# ReadtheDocs | ||
sphinx>=1.8.1 | ||
sphinx_rtd_theme>=0.4.2 |
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