Skip to content

Commit 00ec996

Browse files
authored
build: Upgraded cibuildwheel version and tested building with Python 3.11. (#23)
1 parent 45fca97 commit 00ec996

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

DEV_NOTES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Install your local Python3 environment **venv**
3030
# or simply:
3131
./proj venv
3232
33-
# either of the ^ ^ should be followed by:
33+
# either of the above should be followed by:
3434
source venv/bin/activate
3535
3636
The development requirements are these if you prefer to install them one by one:

ci/cibuildwheel.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ stages:
2929
functionName: "ondemand-pipeline"
3030
payload: |
3131
{
32-
"pool": "arm64",
32+
"pool": "arm64-clients",
3333
"buildid": "$(Build.BuildId)"
3434
}
3535
outputVariable: "functionResult"
@@ -38,11 +38,11 @@ stages:
3838
name: "Display_Instance"
3939
displayName: "Display Instance"
4040
- bash: |
41-
echo "Starting agent... for pool arm64"
42-
POOLID=$(az pipelines pool list | jq '.[]| select(.name == "arm64") | .id' -r)
43-
while [ "$(az pipelines agent list --pool-id $POOLID | jq '.[]| select(.name == "arm64-$(Build.BuildId)") | .enabled' -r)" != "true" ]
41+
echo "Starting agent... for pool arm64-clients"
42+
POOLID=$(az pipelines pool list | jq '.[]| select(.name == "arm64-clients") | .id' -r)
43+
while [ "$(az pipelines agent list --pool-id $POOLID | jq '.[]| select(.name == "arm64-clients-$(Build.BuildId)") | .enabled' -r)" != "true" ]
4444
do
45-
echo "Still waiting for agent arm64-$(Build.BuildId) ... "
45+
echo "Still waiting for agent arm64-clients-$(Build.BuildId) ... "
4646
sleep 3
4747
done
4848
echo "Agent found ..."
@@ -51,10 +51,10 @@ stages:
5151
timeoutInMinutes: 20
5252
- job: linux_arm64
5353
pool:
54-
name: "arm64"
54+
name: "arm64-clients"
5555
vmImage:
5656
demands:
57-
- Agent.Name -equals arm64-$(Build.BuildId)
57+
- Agent.Name -equals arm64-clients-$(Build.BuildId)
5858
dependsOn:
5959
- start_linux_arm64_agent_aws
6060
timeoutInMinutes: 60
@@ -68,7 +68,7 @@ stages:
6868
- bash: |
6969
set -o errexit
7070
python3 -m pip install --upgrade pip
71-
pip3 install cibuildwheel==2.8.1
71+
pip3 install cibuildwheel==2.11.1
7272
displayName: Install dependencies
7373
- bash: cibuildwheel --output-dir wheelhouse .
7474
displayName: Build wheels
@@ -83,7 +83,7 @@ stages:
8383
- bash: |
8484
set -o errexit
8585
python3 -m pip install --upgrade pip
86-
pip3 install cibuildwheel==2.8.1
86+
pip3 install cibuildwheel==2.11.1
8787
displayName: Install dependencies
8888
- bash: cibuildwheel --output-dir wheelhouse .
8989
displayName: Build wheels
@@ -100,7 +100,7 @@ stages:
100100
- bash: |
101101
set -o errexit
102102
python3 -m pip install --upgrade pip
103-
pip3 install cibuildwheel==2.8.1
103+
pip3 install cibuildwheel==2.11.1
104104
displayName: Install dependencies
105105
- bash: cibuildwheel --output-dir wheelhouse .
106106
displayName: Build wheels
@@ -117,7 +117,7 @@ stages:
117117
- bash: |
118118
set -o errexit
119119
python3 -m pip install --upgrade pip
120-
pip3 install cibuildwheel==2.8.1
120+
pip3 install cibuildwheel==2.11.1
121121
displayName: Install dependencies
122122
- bash: cibuildwheel --output-dir wheelhouse .
123123
displayName: Build wheels
@@ -134,7 +134,7 @@ stages:
134134
- bash: |
135135
set -o errexit
136136
python3 -m pip install --upgrade pip
137-
pip3 install cibuildwheel==2.8.1
137+
pip3 install cibuildwheel==2.11.1
138138
displayName: Install dependencies
139139
- bash: cibuildwheel --output-dir wheelhouse .
140140
displayName: Build wheels
@@ -151,7 +151,7 @@ stages:
151151
- bash: |
152152
set -o errexit
153153
python3 -m pip install --upgrade pip
154-
python3 -m pip install cibuildwheel==2.8.1
154+
python3 -m pip install cibuildwheel==2.11.1
155155
displayName: Install dependencies
156156
- bash: cibuildwheel --output-dir wheelhouse .
157157
displayName: Build wheels
@@ -166,7 +166,7 @@ stages:
166166
- bash: |
167167
set -o errexit
168168
python -m pip install --upgrade pip
169-
pip install cibuildwheel==2.8.1
169+
pip install cibuildwheel==2.11.1
170170
displayName: Install dependencies
171171
- bash: cibuildwheel --output-dir wheelhouse .
172172
displayName: Build wheels

dev_requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
setuptools>=45.2.0
2-
Cython>=0.29.24
2+
Cython>=0.29.32
33
wheel>=0.34.2
4-
cibuildwheel>=2.8.0
4+
cibuildwheel>=2.11.1
55
Sphinx>=5.0.2
66
sphinx-rtd-theme>=1.0.0
77
twine>=4.0.1

0 commit comments

Comments
 (0)