[08:01:57] <JayFK> is "package==foo\t\t# some comment" considered valid in a requirements file? pip has no problems to parse this, but setuptools parse_requirements is looking for a ' #' in the line and won't parse it: https://github.com/pypa/setuptools/blob/master/pkg_resources/__init__.py#L2775
[10:00:25] <dstufft> JayFK: setuptools doesn't support comments at all afaik, setuptools expects this stuff to be in a Python file as a Python string, so it makes more sense to have the comment outside of the string as a regular Python comment
[15:39:20] <agronholm> dstufft: would you be open to the idea of upgrading that thing to yaml 1.2 compliance?
[15:39:41] <agronholm> that way it'd be a 100% compatible superset to JSON.
[15:40:57] <dstufft> agronholm: in abstract? I have no problem upgrading it to YAML 1.2. My goals right now are to clean up the code and get it running single source py2 and py3
[16:58:28] <agronholm> other than that, looks good so far
[19:28:03] <sanguisdex> how do I tell a requirement's requirement that I want to install install a forked version of the required requirement? (as in DesiredApp-> Requirement -> forkedRequirment