diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5bc6c284bd..350944837e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,6 +23,8 @@ jobs: python-version: "3.10" - name: Install hatch run: pip install hatch + - name: Install click + run: pip install click!=8.3.0 - name: Run Tests run: hatch run test_all.py3.10:test @@ -37,6 +39,9 @@ jobs: python-version: "3.11.9" - name: Install hatch run: pip install hatch + # NOTE: due to bug: https://github.com/pallets/click/issues/3066 + - name: Install click + run: pip install click!=8.3.0 - name: Run Tests run: hatch run test_all.py3.11:test @@ -51,6 +56,8 @@ jobs: python-version: "3.12" - name: Install hatch run: pip install hatch + - name: Install click + run: pip install click!=8.3.0 - name: Run Tests run: hatch run test_all.py3.12:test @@ -65,6 +72,8 @@ jobs: python-version: "3.11.9" - name: Install hatch run: pip install hatch + - name: Install click + run: pip install click!=8.3.0 - name: Lint run: hatch run lint