8000 Fix outdated build command in aarch builds · vpython/vpython-jupyter@f3d4e00 · GitHub
[go: up one dir, main page]

Skip to content

Commit f3d4e00

Browse files
committed
Fix outdated build command in aarch builds
1 parent b9f4333 commit f3d4e00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ jobs:
104104
source .env/bin/activate && \
105105
echo -e "\e[1;34m Install dependencies \e[0m" && \
106106
python -m pip install --upgrade pip && \
107-
pip install pytest Cython wheel && \
107+
pip install pytest Cython wheel build && \
108108
echo -e "\e[1;34m Build wheel \e[0m" && \
109-
python setup.py bdist_wheel && \
109+
python -m build && \
110110
echo -e "\e[1;34m Install vpython \e[0m" && \
111111
pip install . && \
112112
echo -e "\e[1;34m Run tests \e[0m" && \

0 commit comments

Comments
 (0)
0