-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3300: List Python3 dependencies r=fweik a=jngrad Follow-up to #3093 List the minimal version numbers that are supported for dependent Python modules. Please note `requirements.txt` does not have to list strict dependencies, optional packages are also allowed. Comments after a package name must have a whitespace before the `#` symbol. 3303: utils: Fixed false positive compiler warnings occuring for some combi… r=jngrad a=fweik …nations of gcc and boost Co-authored-by: Jean-Noël Grad <[email protected]> Co-authored-by: Florian Weik <[email protected]>
- Loading branch information
Showing
4 changed files
with
45 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
sphinx>=1.6.6,!=2.1.0 | ||
sphinxcontrib-bibtex>=0.3.5 | ||
# required scientific packages | ||
numpy>=1.11.0 | ||
h5py>=2.6.0 | ||
# optional scientific packages | ||
scipy>=0.17.0 | ||
MDAnalysis>=0.16 | ||
pint>=0.9 | ||
# optional packages for graphics and external devices | ||
matplotlib>=1.5.1 | ||
vtk>=7.1.1 | ||
PyOpenGL>=3.1.0 | ||
mayavi>=4.5.0 | ||
pyface | ||
pygame>=1.9.6 | ||
traits>=4.6.0 | ||
traitsui>=4.5.1 | ||
# CI-related | ||
requests>=2.9.1 # to post on GitHub as espresso-ci | ||
lxml>=3.5.0 # to deploy tutorials | ||
# sphinx and its dependencies | ||
sphinx>=1.6.6,!=2.1.0 | ||
sphinxcontrib-bibtex>=0.3.5 | ||
# pep8 and its dependencies | ||
autopep8==1.3.4 | ||
pycodestyle==2.3.1 | ||
# pylint and its dependencies | ||
pylint>=2.2.2 | ||
astroid>=2.1.0 | ||
isort>=4.3.4 |
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