From 1235d77e72e6b3d60b40b2c5ae3e79d00543629d Mon Sep 17 00:00:00 2001 From: Chih-Hsuan Yen Date: Sat, 2 Apr 2022 12:03:45 +0800 Subject: [PATCH] Pin werkzeug for httpbin compatibility --- .github/workflows/tests.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 97304a1..559eb9e 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -43,8 +43,9 @@ jobs: run: | sudo apt update sudo apt install -y libcurl4-openssl-dev + # werkzeug is pinned for httpbin compatibility https://github.com/postmanlabs/httpbin/issues/673 - name: Install Python deps - run: pip install -U ${{ matrix.deps }} pytest pytest-asyncio pytest-httpbin flaky structlog tomli appdirs lxml + run: pip install -U ${{ matrix.deps }} pytest pytest-asyncio pytest-httpbin flaky structlog tomli appdirs lxml 'werkzeug<2.1' - name: Decrypt keys env: KEY: ${{ secrets.KEY }}