We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
distribute.sh is creating a bad requirements.txt in OSX if multiple pure-python modules are provided:
distribute.sh
requirements.txt
./distribute.sh -m "kivy pygments requests" (...) Create a requirement file for pure-python modules Install pure-python modules via pip in venv Downloading/unpacking requestsnpygments (from -r requirements.txt (line 1))
Because of this: http://stackoverflow.com/q/6111679/798575
I changed the line 723 manually from:
try echo "$PYMODULES" | try sed 's/\ /\n/g' > requirements.txt
to
try echo "$PYMODULES" | try sed 's/\ /\ /g' > requirements.txt
and worked. Is this an acceptable patch on all platforms?
The text was updated successfully, but these errors were encountered:
Fixed in the new toolchain, and possibly in the old one. Thanks for reporting it.
Sorry, something went wrong.
No branches or pull requests
distribute.sh
is creating a badrequirements.txt
in OSX if multiple pure-python modules are provided:Because of this: http://stackoverflow.com/q/6111679/798575
I changed the line 723 manually from:
to
and worked. Is this an acceptable patch on all platforms?
The text was updated successfully, but these errors were encountered: