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
+29
View File
@@ -0,0 +1,29 @@
REM @echo off
REM requirements:
REM conda
REM
REM create envs:
REM conda create -n py36 python=3.6.8
REM conda create -n py37 python=3.7.9
REM conda create -n py38 python=3.8.5
REM conda create -n py39 python=3.9.6
cd ../
REM compile Python 3.6.8
call conda activate py36
call python setup.py bdist_wheel
REM compile Python 3.7.9
call conda activate py37
call python setup.py bdist_wheel
REM compile Python 3.8.5
call conda activate py38
call python setup.py bdist_wheel
REM compile Python 3.9.6
call conda activate py39
call python setup.py bdist_wheel
pause