heroku / heroku-buildpack-python

Heroku's buildpack for Python applications.
https://www.heroku.com/python
MIT License
976 stars 1.84k forks source link

Python builds not working on CI since #e8a79bbda5f2563300b7e5bc280ee4005629243f #401

Closed guybowden closed 7 years ago

guybowden commented 7 years ago

I've just run into an issue whereby my app which was building fine on Monday is now not building:

My runtime.txt is set to 2.7.10

My buildpack was set to https://github.com/heroku/heroku-buildpack-python.git - have also tried with https://github.com/heroku/heroku-buildpack-python.git#v103 & https://github.com/heroku/heroku-buildpack-python.git#v104

CI fails as when pip tries to install a requirement that imports six.

However, if I set the buildpack to use #e8a79bbda5f2563300b7e5bc280ee4005629243f, things work.

Happy to supply more info as requested.

amureki commented 7 years ago

@guybowden hi! This is not related to buildpack, but to the setuptools: https://github.com/pypa/setuptools/issues/1042

And it was already fixed, so builds should be fine now.

kennethreitz commented 7 years ago

@amureki thanks for the update!