tk0miya / testing.postgresql

Apache License 2.0
291 stars 46 forks source link

pg8000 No Longer Supports Python2. #28

Closed big-mac-slice closed 5 years ago

big-mac-slice commented 5 years ago

Looks like the 1.13.0 release of pg8000 drops support of python2.7 which is being picked up by the requirement of pg8000 >= 1.10.

asqui commented 5 years ago

Just encountered this as well. PR submitted.

The last PR accepted by this project was Oct 31, 2017 so I don't know how long it will take to get this incorporated?

piroux commented 5 years ago

The last release of pg8000 indeed dropped Python 2 support but that should not have broken anything for Python 2.7 projects, so that I reported the issue to the maintainer and he fixed the releases on Pypi quite quickly: https://github.com/tlocke/pg8000/issues/7

So the good thing is that testing.postgresql does not need to pin the version of pg8000.

big-mac-slice commented 5 years ago

I saw, thanks @piroux! Unpinned our project's pg8000 and it's back to working. Appreciated.