-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.bat
66 lines (62 loc) · 1.55 KB
/
versions.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
echo off
echo Deleting cpp and pyd files in Pygameshader directory prior installation
cd Cielab
del *.cpp
del *.pyd
cd ..
echo Building Cielab with python ver %python3_6%
call %python3_6% setup.py build_ext --inplace
call %python3_6% setup.py bdist_wheel
echo Cleaning up last build
cd Cielab
del *.cpp
del *.pyd
cd ..
echo Building Cielab with python ver %python3_7%
call %python3_7% setup.py build_ext --inplace
call %python3_7% setup.py bdist_wheel
echo Cleaning up last build
cd Cielab
del *.cpp
del *.pyd
cd ..
echo Building Cielab with python ver %python3_8%
call %python3_8% setup.py build_ext --inplace
call %python3_8% setup.py bdist_wheel
echo Cleaning up last build
cd Cielab
del *.cpp
del *.pyd
cd ..
echo Building Cielab with python ver %python3_9%
call %python3_9% setup.py build_ext --inplace
call %python3_9% setup.py bdist_wheel
echo Cleaning up last build
cd Cielab
del *.cpp
del *.pyd
cd ..
echo Building Cielab with python ver %python3_10%
call %python3_10% setup.py build_ext --inplace
call %python3_10% setup.py bdist_wheel
echo Cleaning up last build
cd Cielab
del *.cpp
del *.pyd
cd ..
echo Building Cielab with python ver %python3_11%
call %python3_11% setup.py build_ext --inplace
call %python3_11% setup.py sdist bdist_wheel
echo Cleaning up last build
cd Cielab
del *.cpp
del *.pyd
cd ..
echo Building Cielab with python ver %python3_12%
call %python3_12% setup.py build_ext --inplace
call %python3_12% setup.py sdist bdist_wheel
echo Cleaning up last build
cd Cielab
del *.cpp
del *.pyd
cd ..