Skip to content

Commit d94229b

Browse files
authored
Merge pull request #3691 from Starbuck5/fix-msys
Update windows dep bundles to fix msys build failure
2 parents 45c8da5 + a3ade1c commit d94229b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

buildconfig/download_win_prebuilt.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@ def get_urls(x86=True, x64=True):
112112
])
113113
if x86:
114114
url_sha1.append([
115-
'https://github.com/pygame-community/pygame-ce/releases/download/2.1.3/prebuilt-x86-pygame-2.1.4-20220319.zip',
116-
'bff2e50d65ec35274d33203e9fcaf5d53b31a696'
115+
'https://github.com/pygame-community/pygame-ce/releases/download/2.1.3/prebuilt-x86-pygame-2.1.4-20220319_2.zip',
116+
'6970a35c62fa517e9782dc92299201bf2a0ec917'
117117
])
118118
if x64:
119119
url_sha1.append([
120-
'https://github.com/pygame-community/pygame-ce/releases/download/2.1.3/prebuilt-x64-pygame-2.1.4-20220319.zip',
121-
'16b46596744ce9ef80e7e40fa72ddbafef1cf586'
120+
'https://github.com/pygame-community/pygame-ce/releases/download/2.1.3/prebuilt-x64-pygame-2.1.4-20220319_2.zip',
121+
'3aaacd02f0c2ed497e2615d3a1f89c250a32f1fa'
122122
])
123123
return url_sha1
124124

@@ -184,12 +184,12 @@ def place_downloaded_prebuilts(temp_dir, move_to_dir, x86=True, x64=True):
184184
"""
185185
prebuilt_x64 = os.path.join(
186186
temp_dir,
187-
'prebuilt-x64-pygame-2.1.4-20220319',
187+
'prebuilt-x64-pygame-2.1.4-20220319_2',
188188
'prebuilt-x64'
189189
)
190190
prebuilt_x86 = os.path.join(
191191
temp_dir,
192-
'prebuilt-x86-pygame-2.1.4-20220319',
192+
'prebuilt-x86-pygame-2.1.4-20220319_2',
193193
'prebuilt-x86'
194194
)
195195

0 commit comments

Comments
 (0)