Skip to content

Commit

Permalink
3.1.72.3bi
Browse files Browse the repository at this point in the history
  • Loading branch information
pmp-p committed Nov 23, 2024
1 parent f7ca93e commit 9fecd70
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions sources.plus/mypy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

. ${CONFIG:-config}

if [ -d src/mypy ]
then
pushd src/mypy
git pull
else
pushd src
git clone --no-tags --depth 1 --single-branch --branch master https://github.com/python/mypy
fi
popd


pushd src/mypy
if ${SDKROOT}/python3-wasm -m build .
then
${SDKROOT}/python3-wasm -m pip install dist/mypy-*.whl
else
echo failed to build mypyc wheel
exit 21
fi
popd

0 comments on commit 9fecd70

Please sign in to comment.