chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:36:30 +08:00
commit 55ab4e4a73
473 changed files with 72932 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#!/usr/bin/env bash
# Install pyenv
# brew install pyenv: https://segmentfault.com/a/1190000016819226
#
# compiles mac packages for python 3.6、3.7、3.8、3.9
# requirements:
# pyenv
export WORKDIR=$HOME/build
if [ ! -d "$WORKDIR" ]; then
mkdir -p "$WORKDIR"
cd "$WORKDIR" || exit
git clone https://github.com/easy-graph/Easy-Graph.git
fi
cd "$WORKDIR"/Easy-Graph || exit
pip install wheel
# # compile Python 3.6
# pyenv global 3.6.15
# time python setup.py bdist_wheel --plat-name macosx-10.9-x86_64
# compile Python 3.7
pyenv global 3.7.9
time python setup.py bdist_wheel --plat-name macosx-10.9-x86_64
# compile Python 3.8
pyenv global 3.8.5
time python setup.py bdist_wheel --plat-name macosx-10.9-x86_64
# compile Python 3.9
pyenv global 3.9.10
time python setup.py bdist_wheel --plat-name macosx-10.9-x86_64