mike

Results 6 comments of mike

Note, I don't actually understand python's `setup.py` infrastructure. I just saw a problem and changed a line in a way that seemed to make sense for me. The result worked...

Anyway, thanks for writing "rocket". It helped me with the web interface to a spit and chickenwire personal project involving a raspberry pi music player / alarm clock. I'd been...

Talked to a friend who knows more about `setup.py` than I do, and he suggested that the preferred fix might instead by something like ``` $ git diff master diff...

@cwgreene suggested to me (in a private side-conversation) that the following fix might be better or more appropriate ``` diff --git a/setup.py b/setup.py index 22dcf9b..50f8b4e 100755 --- a/setup.py +++ b/setup.py...

For what it's worth, I tried installing rocket from source using `sudo python setup.py install` and, just as in the bug described here, it also failed to copy over the...

I think I have a fix ``` diff --git a/setup.py b/setup.py index 22dcf9b..81744f8 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup(name = "Rocket", url = "https://github.com/explorigin/Rocket", packages =...