1919 verbosity : minimal
2020skip_branch_with_pr : true
2121image : Visual Studio 2019
22+ clone_script : echo Skip AppVeyor Clone
2223
2324environment :
2425 global :
@@ -32,7 +33,7 @@ environment:
3233 PYTHON_DEF : " C:\\ Python38-x64"
3334 PYTHON_VERSION : " 3.8"
3435 # Python versions to build wheels for
35- PYTHONVERS : C:\Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64 C:\Python312-x64
36+ PYTHONVERS : C:\Python37-x64 C:\ Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64 C:\Python312-x64 C:\Python313 -x64
3637 PYTHON_ARCH : " 64"
3738 MSVC : " Visual Studio 16 2019"
3839
@@ -46,11 +47,21 @@ install:
4647 https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
4748 Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
4849 throw "There are newer queued builds for this pull request, failing early." }
50+
51+ # Git checkout
52+ - git config --global filter.lfs.smudge "git-lfs smudge --skip -- %f"
53+ - git config --global filter.lfs.process "git-lfs filter-process --skip"
54+ - git init %APPVEYOR_BUILD_FOLDER%
55+ - cd %APPVEYOR_BUILD_FOLDER%
56+ - git remote add origin https://github.com/%APPVEYOR_REPO_NAME%.git
57+ - git fetch -q origin %APPVEYOR_REPO_COMMIT%
58+ - git fetch --tags
59+ - git checkout -qf %APPVEYOR_REPO_COMMIT%
60+
4961 - set OPENSSL_DIR="C:\OpenSSL-v34-Win64"
5062 - set VCLIBDIR=%WINDIR%\System32
51- - cp %VCLIBDIR%/vcruntime*.dll ssh2/
52- - cp %VCLIBDIR%/msvcp*.dll ssh2/
53- - cp %VCLIBDIR%/msvcr*.dll ssh2/
63+ - cp %VCLIBDIR%/vcruntime140.dll ssh2/
64+ - cp %VCLIBDIR%/msvcr120.dll ssh2/
5465 - cp %OPENSSL_DIR%/bin/*.dll ssh2/
5566 - ps : ls ssh2/*.dll
5667
@@ -63,7 +74,6 @@ install:
6374 # do not cause a version change.
6475 - " %PYTHON_DEF%\\ python.exe ci/appveyor/fix_version.py ."
6576 - mv -f .git .git.bak
66- - 7z x ci\appveyor\zlib1211.zip
6777
6878build_script :
6979 - dir %OPENSSL_DIR%\lib\VC\x64\MD\
0 commit comments