File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 10
10
from urllib.request import urlopen
11
11
12
12
context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
13
+ # badssl.com is a HTTPS test server that can be used to test SSL connections
13
14
data = urlopen("https://tls-v1-2.badssl.com", context=context)
14
- data = urlopen("https://raw.githubusercontent.com/pypa/cibuildwheel/main/CI.md", context=context)
15
- data = urlopen("https://raw.githubusercontent.com/pypa/cibuildwheel/main/CI.md")
15
+ data = urlopen("https://tls-v1-2.badssl.com")
16
16
"""
17
17
)
18
18
)
Original file line number Diff line number Diff line change 5
5
6
6
from cibuildwheel .util .file import download
7
7
8
- DOWNLOAD_URL = "https://raw.githubusercontent.com/ pypa/cibuildwheel/ v1.6.3/requirements-dev.txt"
8
+ DOWNLOAD_URL = "https://cdn.jsdelivr.net/gh/ pypa/cibuildwheel@ v1.6.3/requirements-dev.txt"
9
9
10
10
11
11
def test_download (monkeypatch , tmp_path ):
You can’t perform that action at this time.
0 commit comments