fix: temporarily try uv-based install to prevent click bug #96
2 changed files with 14 additions and 4 deletions
|
|
@ -14,8 +14,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Setup environment
|
- name: Setup environment
|
||||||
run: |
|
run: |
|
||||||
apt-get update && apt-get install --yes --no-install-recommends git make patch
|
apt-get update && apt-get install --yes --no-install-recommends git make patch curl
|
||||||
python -m pip install hatch
|
- name: Install uv
|
||||||
|
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||||
|
# click version is temporary fix for https://github.com/pypa/hatch/issues/2050
|
||||||
|
# python -m pip install hatch
|
||||||
|
- name: Install hatch
|
||||||
|
run: uv tool install hatch --with 'click <8.3'
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Setup environment
|
- name: Setup environment
|
||||||
run: |
|
run: |
|
||||||
apt-get update && apt-get install --yes --no-install-recommends git make patch
|
apt-get update && apt-get install --yes --no-install-recommends git make patch curl
|
||||||
python -m pip install hatch
|
- name: Install uv
|
||||||
|
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||||
|
# click version is temporary fix for https://github.com/pypa/hatch/issues/2050
|
||||||
|
# python -m pip install hatch
|
||||||
|
- name: Install hatch
|
||||||
|
run: uv tool install hatch --with 'click <8.3'
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue