File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -143,16 +143,21 @@ jobs:
143
143
echo $?
144
144
git tag --list
145
145
146
+ - name : Set up Python
147
+ uses : actions/setup-python@v5
148
+ with :
149
+ python-version : 3.11
150
+
146
151
- name : Install prerequisites
147
152
run : |
148
- python3 -m pip install -r requirements.txt
149
- python3 -m pip install twine wheel
150
- python3 -m pip install --user delocate
153
+ python -m pip install -r requirements.txt
154
+ python -m pip install twine wheel
155
+ python -m pip install --user delocate
151
156
152
157
- name : Create wheel
153
158
run : |
154
- python3 setup.py bdist_wheel
155
- export PATH="$(python3 -m site --user-base)/bin:$PATH"
159
+ python setup.py bdist_wheel
160
+ export PATH="$(python -m site --user-base)/bin:$PATH"
156
161
echo "PATH: $PATH"
157
162
delocate-wheel -w wheelhouse -v dist/*.whl
158
163
ls wheelhouse/*any.whl | sed -e 'p;s/any/macosx_10_9_x86_64/' | xargs -n2 mv
@@ -195,9 +200,9 @@ jobs:
195
200
git tag --list
196
201
197
202
- name : Set up Python
198
- uses : actions/setup-python@v2
203
+ uses : actions/setup-python@v5
199
204
with :
200
- python-version : 3.10
205
+ python-version : 3.11
201
206
architecture : ${{ matrix.arch }}
202
207
203
208
- name : Install prerequisites
You can’t perform that action at this time.
0 commit comments