Ed Morley
Ed Morley
Restores the specification for `CNB_STACK_ID` to the definition that was used prior to the docs refactor in #335. Fixes #396. Backport of #397.
The spec currently says: > For run images, the platform SHOULD ensure that: > > * The image config's Label field has the label `io.buildpacks.base.id` set to the target ID...
In #179 and #187, there was confusion about the current pragma syntax, and that `pragma: some` actually means `pragma: no cover if some`. Whilst the situation can be improved by...
I just tried to use `coverage-conditional-plugin` by following the README, however pytest-cov was still reporting less than 100% coverage. After going down a rabbit hole of thinking that my `pyproject.toml`...
If I try a Pack build using Pack CLI 0.30.0 and `pack build --builder cnbs/sample-builder:alpine ...`, I currently get the following error: ``` $ pack build example-basics --builder cnbs/sample-builder:alpine --trust-builder...
Hi! Please could this package also by made available as a wheel on PyPI? https://pypi.python.org/pypi/pyinotify Wheels have the following advantages: * Faster installation time * Allows the wheel cache to...
## Summary uWSGI calculates the Python stdlib location incorrectly for Python installs that have been relocated, resulting in the server failing to start due to: ``` Fatal Python error: init_fs_encoding:...
We currently use Django+WhiteNoise, wrapped with wsgi-sslify. ie: ``` python from django.core.wsgi import get_wsgi_application as django_app from wsgi_sslify import sslify application = CustomWhiteNoise(django_app()) application = sslify(application) ``` We cannot rely...
In a project I work on, we use both `CompressedStaticFilesMixin` and the standalone compressor (`python -m whitenoise.compress `) during Heroku deployments. At the moment these steps are a considerable percentage...
Hi! :-) ### STR: 1. Update existing Django+WhiteNoise project from whitenoise 3.3.1 to 4.0. 2. Don't run collectstatic (ie since developing locally), so the directory referenced by `STATIC_ROOT` doesn't yet...