diff --git a/appveyor.ini b/appveyor.ini index 4a85126f0..974a51263 100644 --- a/appveyor.ini +++ b/appveyor.ini @@ -19,7 +19,7 @@ APPVEYOR_BUILD_FOLDER = ${Variables:Root} # Category is case sensitive [GeneralSettings] General/EMERGE_PKGDSTDIR=${Variables:APPVEYOR_BUILD_FOLDER}/binaries -Paths/Python = C:\Python38 +Paths/Python = C:\Python310 Paths/Python27 = C:\Python27 Paths/Msys = ${Variables:Msys} Paths/DownloadDir = ${Variables:Root}/downloads diff --git a/appveyor.yml b/appveyor.yml index 5e2743264..db2049876 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ clone_depth: 1 init: - ps: | function craft() { - & C:\python38\python.exe "C:\CraftMaster\CraftMaster\CraftMaster.py" --config "$env:APPVEYOR_BUILD_FOLDER\appveyor.ini" --variables "APPVEYOR_BUILD_FOLDER=$env:APPVEYOR_BUILD_FOLDER" --target $env:TARGET -c $args + & C:\python310\python.exe "C:\CraftMaster\CraftMaster\CraftMaster.py" --config "$env:APPVEYOR_BUILD_FOLDER\appveyor.ini" --variables "APPVEYOR_BUILD_FOLDER=$env:APPVEYOR_BUILD_FOLDER" --target $env:TARGET -c $args if($LASTEXITCODE -ne 0) {exit $LASTEXITCODE} }