-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
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
run.py depends on cat, why? #758
Comments
@hallvors is talking about Lines 57 to 71 in 2936db3
|
That was my commit 7252891 And yes good comment. Your proposal is a good one. Also possible. try:
pkg_resources.require([req for req in open("requirements.txt")]) |
Wow, even more brief :) |
Cool, learned some more Python today. ^_^ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Trying to run run.py on Windows fails because it tries to call the cat command on line 63:
The easiest workaround is to do
run.py -t
to launch "test mode", and I guess we'll never ever run this on a system where 'cat' is not available for production. But why depend on cat in the first place?should do, I think.
The text was updated successfully, but these errors were encountered: