Replies: 2 comments
-
|
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
-
|
The |
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
the
setup.pycode has these following lines, which I want to confirm wether correct:1.
The variable
startis 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_reqfunction: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