Skip to content

Commit a4b0c8c

Browse files
committed
CI: No ned to install "wheel" package twice (already in requirements.txt).
1 parent b5f25c4 commit a4b0c8c

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ jobs:
6464
with:
6565
python-version: "3.10"
6666

67-
- name: Install Dependency
67+
- name: Install Dependencies
6868
run: |
69-
python -m pip install --pre -r requirements.txt
69+
python -m pip install -r requirements.txt
7070
7171
- name: Building wheel
7272
run: |
@@ -128,10 +128,9 @@ jobs:
128128
with:
129129
python-version: ${{ matrix.python-version }}
130130

131-
- name: Install Dependency
131+
- name: Install Dependencies
132132
run: |
133-
python -m pip install --pre -r requirements.txt
134-
python -m pip install wheel
133+
python -m pip install -r requirements.txt
135134
136135
- name: Building wheel
137136
run: |

0 commit comments

Comments
 (0)