File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -73,10 +73,10 @@ jobs:
7373 with :
7474 python-version : " 3.10"
7575 cache : " pip"
76- - run :
77- pip install -r requirements.txt
78- python setup.py bdist_wheel
79-
76+ - name : Install dependencies
77+ run : pip install -r requirements.txt
78+ - name : Build wheel
79+ run : python setup.py bdist_wheel
8080
8181 - name : Upload wheels
8282 uses : actions/upload-artifact@v4
@@ -104,9 +104,10 @@ jobs:
104104 python-version : ' 3.10'
105105 architecture : ${{ matrix.target }}
106106 cache : " pip"
107- - run :
108- pip install -r requirements.txt
109- python setup.py bdist_wheel
107+ - name : Install dependencies
108+ run : pip install -r requirements.txt
109+ - name : Build wheel
110+ run : python setup.py bdist_wheel
110111
111112 - name : Upload wheels
112113 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments