Try patching whitenoise again

This commit is contained in:
Trenton H 2023-10-20 07:05:31 -07:00
parent a5be8eeb18
commit 099bb29283

View File

@ -454,6 +454,9 @@ jobs:
- -
name: Gather info name: Gather info
run: | run: |
curl --fail --silent --show-error --location --output 484.patch https://github.com/evansd/whitenoise/pull/484.patch
patch -d $(pipenv --venv)/lib/python3.10/site-packages --verbose -p2 < 484.patch
rm 484.patch
pipenv --python ${{ steps.setup-python.outputs.python-version }} run python3 -m site pipenv --python ${{ steps.setup-python.outputs.python-version }} run python3 -m site
pipenv --python ${{ steps.setup-python.outputs.python-version }} run pip3 list --verbose pipenv --python ${{ steps.setup-python.outputs.python-version }} run pip3 list --verbose
- -