We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf9b197 commit aa0ba26Copy full SHA for aa0ba26
2 files changed
.evergreen/scripts/kms_tester.py
@@ -91,7 +91,10 @@ def setup_kms(sub_test_name: str) -> None:
91
create_archive()
92
if sub_test_target == "azure":
93
os.environ["AZUREKMS_VMNAME_PREFIX"] = "PYTHON_DRIVER"
94
- os.environ["AZUREKMS_IMAGE"] = "Ubuntu2204"
+ # Found using "az vm image list --output table"
95
+ os.environ[
96
+ "AZUREKMS_IMAGE"
97
+ ] = "Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest"
98
else:
99
os.environ["GCPKMS_IMAGEFAMILY"] = "debian-12"
100
run_command("./setup.sh", cwd=kms_dir)
.github/workflows/dist.yml
@@ -88,7 +88,7 @@ jobs:
88
ls wheelhouse/*cp313*.whl
89
ls wheelhouse/*cp314*.whl
90
# Free-threading builds:
- ls wheelhouse/*cp314*.whl
+ ls wheelhouse/*cp314t*.whl
- uses: actions/upload-artifact@v4
with:
0 commit comments