|
| 1 | +# python_version 3.7.6 |
| 2 | +# |
| 3 | +# The parse_version_from_requirements() function in the installPipfile.groovy |
| 4 | +# file of the Jenkins Shared Library uses the python_version comment to set |
| 5 | +# the version of python used. |
| 6 | + |
| 7 | +# Distributed (released) dependencies |
| 8 | +# |
| 9 | +# The python modules listed below specify a known working combination required |
| 10 | +# by the python code in this repository. The procedure used to set up a |
| 11 | +# suitable python environment for it installs the version of each module in |
| 12 | +# the list. Using a specific version ensures a controlled infrastructure for |
| 13 | +# development, testing and release of this repository. |
| 14 | +# |
| 15 | +# Another repository might depend on python code defined in this one. The |
| 16 | +# procedure to set up a suitable python environment for that repository may |
| 17 | +# pip-install this one as editable using this repository's setup.py file. The |
| 18 | +# same modules should appear in the setup.py list as given below. |
| 19 | + |
| 20 | +flake8==3.8.3 |
| 21 | +matplotlib==3.3.1 |
| 22 | + |
| 23 | +# Pin numpy to 1.18.5 due to tensorflow v2.1.1 hard pinning it to that version. |
| 24 | +numpy==1.18.5 |
| 25 | + |
| 26 | +# Pin scipy to 1.4.1 due to tensorflow v2.1.1 hard pinning it to that version. |
| 27 | +scipy==1.4.1 |
| 28 | + |
| 29 | +# Development dependencies |
| 30 | +# |
| 31 | +# Each link listed below specifies the path to a setup.py file which are |
| 32 | +# installed in editable mode with '-e $PATH' (without the quotes). |
| 33 | +# |
| 34 | +# If python code in this repository depends on python code under development |
| 35 | +# in another repository, then an entry for that other respository should |
| 36 | +# appear in this list instead of the released dependencies list. |
| 37 | +# |
| 38 | +# If this repository uses the setup functionality (e.g., script entry points) |
| 39 | +# of its own setup.py file, then this list must include an entry for that |
| 40 | +# setup.py file, e.g., '-e .' or '-e ./python' (without the quotes). |
| 41 | +-e ./python |
0 commit comments