Replies: 1 comment
-
This file has not been updated (except for some formatting tweaks) in several years. We need to clean it up, or perhaps to replace it by using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
the
setup.py
code has these following lines, which I want to confirm wether correct:1.
The variable
start
is meant to be a flag that determines when the script should start reading the dependencies from the environment.yml file ? However, it is initialized to False and is never set to True. Additionally, there’s a line that incorrectly sets start back to False when the script encounters the "dependencies:" line, instead of setting it to True. Is this correct ?In the
_munge_req
function:for sym in ["~", "=", "<", ">", ",", "!", "!"]:
The "!" symbol is listed twice in the list. This is not redundant ?
r = line.strip()[3:].strip()
why this first 3 letters stripping ?
Beta Was this translation helpful? Give feedback.
All reactions