ci: fix failing tests due to rate-limiting (#2401)

raw.githubusercontent.com URLs are rate-limited now, change URLs
This commit is contained in:
Joe Rickerby
2025-05-19 11:58:28 -04:00
committed by GitHub
parent bd641d11de
commit 9dd7192d89
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import pytest
from cibuildwheel.util.file import download
DOWNLOAD_URL = "https://raw.githubusercontent.com/pypa/cibuildwheel/v1.6.3/requirements-dev.txt"
DOWNLOAD_URL = "https://cdn.jsdelivr.net/gh/pypa/cibuildwheel@v1.6.3/requirements-dev.txt"
def test_download(monkeypatch, tmp_path):