Greg Kempe

Results 15 comments of Greg Kempe

I find the exact same thing as @guybowden - pushing an empty Python Django app that doesn't require the geo libraries to get new clean image set up, then pushing...

Interesting. If that's true, then is the python buildpack not playing nicely with other buildpacks that put libraries into .heroku/vendor, or is the python buildpack allowed to do that? If...

What sets the default STACK variable in Dokku? According to this https://github.com/heroku/heroku-buildpack-python/blob/master/bin/compile#L148 the `$CACHED_PYTHON_STACK` gets set to `$DEFAULT_PYTHON_STACK` which is `cedar`. Perhaps that should be `$CACHED_PYTHON_STACK=$STACK`

Brilliant, thanks @kennethreitz

I'm seeing this too. Any ideas?

As a workaround, I have found we can do a first deploy that doesn't depend on GDAL, and then subsequent deploys DO have GDAL and it all works.

This is most likely related to #33 where we're hopefully making some progress.

I wrote this backend that provides functionality similar to [elasticsearch-dsl's Faceted Search](https://elasticsearch-dsl.readthedocs.io/en/latest/faceted_search.html). ```python class FacetedFilterAggregationFilterBackend(FilteringFilterBackend, FacetedSearchFilterBackend): """ This filter supports facets and filtering in a way similar to elasticsearch-dsl's FacetedSearch...

Sure. Do you mind if I remove the classmethods, or do they need to be kept?

@iandees any thoughts?