Mike Lynch
Mike Lynch
According to the [Python documentation](https://docs.python.org/3.7/reference/datamodel.html#object.__hash__): > The only required property is that objects which compare equal have the same hash value At the moment, this isn't the case: ```python from...
In `setup.py`, there are dependencies on `boto3` and `psycopg2` (i.e. the AWS SDK for Python and the PostgreSQL database adaptor). I don't see any references to these anywhere in the...
README.md states that Luigi versions 1.3.x-2.0.1 are supported, but setup.py only has install_requires luigi, so the latest (v3) package is installed instead. This change captures the requirement, so that if...