You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now version is set in the wstler package init and then imported in the setup.py file. Because of this, when someone tries to install the package via pip install ., a bunch of module not found errors result. This is happening because Python is trying to import wstler and all of its dependencies before any of the requirements are installed.
Solution
Move __version__=foo into the setup.py file
The text was updated successfully, but these errors were encountered:
Issue
Right now version is set in the
wstler
package init and then imported in the setup.py file. Because of this, when someone tries to install the package viapip install .
, a bunch of module not found errors result. This is happening because Python is trying to import wstler and all of its dependencies before any of the requirements are installed.Solution
Move
__version__=foo
into the setup.py fileThe text was updated successfully, but these errors were encountered: