release: Add Python 3.10
This commit is contained in:
@@ -253,7 +253,7 @@ function build_python() {
|
||||
|
||||
command -v swig
|
||||
command -v swig | xargs echo "swig: " | tee -a build.log
|
||||
PY=(3.6 3.7 3.8 3.9)
|
||||
PY=(3.6 3.7 3.8 3.9, 3.10)
|
||||
for i in "${PY[@]}"; do
|
||||
command -v "python$i"
|
||||
command -v "python$i" | xargs echo "python$i: " | tee -a build.log
|
||||
|
||||
@@ -295,7 +295,7 @@ echo %BRANCH% %SHA1%>build_examples.log
|
||||
exit /B 0
|
||||
|
||||
|
||||
REM PYTHON 3.6,3.7,3.8,3.9
|
||||
REM PYTHON 3.6,3.7,3.8,3.9,3.10
|
||||
:BUILD_PYTHON
|
||||
title Build Python
|
||||
set HASH=
|
||||
@@ -305,7 +305,7 @@ echo Python build seems up to date, skipping
|
||||
exit /B 0
|
||||
)
|
||||
|
||||
for %%v in (6 7 8 9) do (
|
||||
for %%v in (6 7 8 9 10) do (
|
||||
title Build Python 3.%%v
|
||||
REM Check Python
|
||||
which.exe C:\python3%%v-64\python.exe || exit 1
|
||||
|
||||
@@ -7,7 +7,7 @@ command -v cmake | xargs echo "cmake: " | tee test.log
|
||||
command -v make | xargs echo "make: " | tee -a test.log
|
||||
command -v swig | xargs echo "swig: " | tee -a test.log
|
||||
# python
|
||||
PY=(3.6 3.7 3.8 3.9)
|
||||
PY=(3.6 3.7 3.8 3.9 3.10)
|
||||
for i in "${PY[@]}"; do
|
||||
command -v "python$i" | xargs echo "python$i: " | tee -a test.log
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user