Chris Jerdonek
Chris Jerdonek
colorama doesn't seem to reset stderr properly on program exit. This resulted in the following pip issue: https://github.com/pypa/pip/issues/6354 It causes the color to remain in the user's terminal. It's possible...
I noticed that when running `docker-osx-dev sync`: ``` $ docker-osx-dev sync -c -s -s ``` it starts two additional child processes with the same command: ``` $ ps xao pid,ppid,command...
I encountered a situation where `docker-osx-dev` wasn't syncing / noticing changes to certain files that it should have. Here is a reduced test case. `.dockerignore` contents: ``` * !foo/ ```...
The documentation in the README says: > If you are using Docker Compose, docker-osx-dev will automatically sync > any folders marked as volumes in docker-compose.yml. However, when I run `docker-osx-dev`...
It would be nice if check-manifest also warned you if MANIFEST.in has lines that "don't do anything" (i.e. lines that match no files being included). The presence of such lines...
#### What's the problem this feature will solve? Currently, when the `--generate-hashes` option is passed to `pip-compile`, `pip-compile` will include potentially many hashes per requirement, even if only one is...
It would be useful if, in addition to the `requirements.txt` format, `pip-compile` also had the option of outputting the requirements and what it knows about each requirement in a standard...
If application code raises a TypeError, json-rpc doesn't necessarily log the exception and stack trace. Instead, it responds with an "Invalid params" error with code "-32602". This is also not...
I encountered a situation where json-rpc will break on certain exceptions. This is with json-rpc version 1.10.3 and Django 1.9.6. If an exception is raised with code like `raise Exception(foo)`,...
This issue is about `repo.reset()` not seeming to work reliably 100% of the time. I have some CI tests that modify a file in a non-bare repo, commit the change...