@@ -7,7 +7,6 @@ run_tests: &RUN_TESTS
7
7
run_cibuildwheel_tests_script :
8
8
- python ./bin/run_tests.py
9
9
10
-
11
10
linux_x86_task :
12
11
timeout_in : 120m
13
12
compute_engine_instance :
@@ -16,10 +15,15 @@ linux_x86_task:
16
15
platform : linux
17
16
cpu : 8
18
17
memory : 8G
19
-
18
+ env :
19
+ VENV_ROOT : ${HOME}/venv-cibuildwheel
20
+ PATH : ${VENV_ROOT}/bin:${PATH}
20
21
install_pre_requirements_script :
21
22
- docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
22
- - apt install -y python3-venv python-is-python3
23
+ - add-apt-repository -y ppa:deadsnakes/ppa
24
+ - apt-get update
25
+ - apt-get install -y python3.12-venv
26
+ - python3.12 -m venv ${VENV_ROOT}
23
27
<< : *RUN_TESTS
24
28
25
29
linux_aarch64_task :
@@ -30,10 +34,15 @@ linux_aarch64_task:
30
34
platform : linux
31
35
cpu : 4
32
36
memory : 4G
33
-
37
+ env :
38
+ VENV_ROOT : ${HOME}/venv-cibuildwheel
39
+ PATH : ${VENV_ROOT}/bin:${PATH}
34
40
install_pre_requirements_script :
35
41
- docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
36
- - apt install -y python3-venv python-is-python3
42
+ - add-apt-repository -y ppa:deadsnakes/ppa
43
+ - apt-get update
44
+ - apt-get install -y python3.12-venv
45
+ - python3.12 -m venv ${VENV_ROOT}
37
46
<< : *RUN_TESTS
38
47
39
48
windows_x86_task :
@@ -46,30 +55,32 @@ windows_x86_task:
46
55
memory : 8G
47
56
48
57
install_pre_requirements_script :
49
- - choco install -y --no-progress python3 --version 3.10.6
58
+ - choco install -y --no-progress python3 --version 3.12.4
50
59
- refreshenv
51
60
- echo PATH=%PATH% >> "%CIRRUS_ENV%"
52
61
<< : *RUN_TESTS
53
62
54
63
macos_arm64_task :
55
64
macos_instance :
56
65
image : ghcr.io/cirruslabs/macos-runner:sonoma
57
-
58
66
env :
59
- PATH :
/opt/homebrew/opt/[email protected] /libexec/bin:$PATH
67
+ VENV_ROOT : ${HOME}/venv-cibuildwheel
68
+ PATH : ${VENV_ROOT}/bin:${PATH}
60
69
install_pre_requirements_script :
61
-
70
+
71
+ - python3.12 -m venv ${VENV_ROOT}
62
72
<< : *RUN_TESTS
63
73
64
74
macos_arm64_cp38_task :
65
75
macos_instance :
66
76
image : ghcr.io/cirruslabs/macos-runner:sonoma
67
-
68
77
env :
69
- PATH :
/opt/homebrew/opt/[email protected] /libexec/bin:$PATH
78
+ VENV_ROOT : ${HOME}/venv-cibuildwheel
79
+ PATH : ${VENV_ROOT}/bin:${PATH}
70
80
PYTEST_ADDOPTS : --run-cp38-universal2 -k 'test_cp38_arm64_testing_universal2_installer or test_arch_auto'
71
81
install_pre_requirements_script :
72
-
82
+
83
+ - python3.12 -m venv ${VENV_ROOT}
73
84
- curl -fsSLO https://www.python.org/ftp/python/3.8.10/python-3.8.10-macos11.pkg
74
85
- sudo installer -pkg python-3.8.10-macos11.pkg -target /
75
86
- rm python-3.8.10-macos11.pkg
0 commit comments