release: Add Python 3.10

This commit is contained in:
Corentin Le Molgat
2021-12-10 13:35:15 +01:00
parent 518ac7ace7
commit 3e36f4f0bb
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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