fix(ci): upgrade setuptools before install, drop editable mode
This commit is contained in:
@@ -11,7 +11,9 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install dependencies
|
||||
run: python3 -m pip install --user -e ".[dev]"
|
||||
run: |
|
||||
python3 -m pip install --user --upgrade pip setuptools wheel
|
||||
python3 -m pip install --user ".[dev]"
|
||||
- name: Lint
|
||||
run: |
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
@@ -22,7 +24,9 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install dependencies
|
||||
run: python3 -m pip install --user -e ".[dev]"
|
||||
run: |
|
||||
python3 -m pip install --user --upgrade pip setuptools wheel
|
||||
python3 -m pip install --user ".[dev]"
|
||||
- name: Test
|
||||
run: |
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
|
||||
Reference in New Issue
Block a user