Skip to content

Commit

Permalink
CI: No ned to install "wheel" package twice (already in requirements.…
Browse files Browse the repository at this point in the history
…txt).
  • Loading branch information
scoder committed Aug 27, 2023
1 parent b5f25c4 commit a4b0c8c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ jobs:
with:
python-version: "3.10"

- name: Install Dependency
- name: Install Dependencies
run: |
python -m pip install --pre -r requirements.txt
python -m pip install -r requirements.txt
- name: Building wheel
run: |
Expand Down Expand Up @@ -128,10 +128,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install Dependency
- name: Install Dependencies
run: |
python -m pip install --pre -r requirements.txt
python -m pip install wheel
python -m pip install -r requirements.txt
- name: Building wheel
run: |
Expand Down

0 comments on commit a4b0c8c

Please sign in to comment.