Skip to content

Commit

Permalink
avoid using template values in keys of checksums for extensions speci…
Browse files Browse the repository at this point in the history
…fied as dict
  • Loading branch information
boegel committed Dec 21, 2024
1 parent c724cd4 commit c3d3e76
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ exts_list = [
('lib-pod5', '0.1.5', {
'source_tmpl': 'lib_pod5-%%(version)s-cp310-cp310-manylinux_2_17_%s.manylinux2014_%s.whl' % (ARCH, ARCH),
'checksums': [{
'lib_pod5-%(version)s-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl': (
'lib_pod5-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl': (
'4e8993327268784bb0e1320595411f545d2019cf4952b04d63be584cf7208480'
),
'lib_pod5-%(version)s-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl': (
'lib_pod5-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl': (
'125f19ad83c299d0d6c67d18ce8e43da4e12bf12cf7141ab7d60fba7574239bd'
),
}],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ exts_list = [
('gurobipy', '11.0.0', {
'sources': ['gurobipy-%(version)s-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_%(arch)s.whl'],
'checksums': [{
'gurobipy-%(version)s-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_aarch64.whl':
'gurobipy-11.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_aarch64.whl':
'096f63ca02fbe810bae25311be598c9d8c5874362e85eac46ef0a4fdb3eaf96b',
'gurobipy-%(version)s-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl':
'gurobipy-11.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl':
'a98abda1cb45f548fff17370eb30cc6e187d04edc5d9984a68d194491598a993',
}],
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ exts_list = [
('gurobipy', version, {
'sources': ['gurobipy-%(version)s-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_%(arch)s.whl'],
'checksums': [{
'gurobipy-%(version)s-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_aarch64.whl':
'gurobipy-11.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_aarch64.whl':
'871e818026c8f288d7440fcd4b842becdf1006f43495fc4f6e3ec6d9b8ba3d7a',
'gurobipy-%(version)s-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl':
'gurobipy-11.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl':
'86265b7a9a8f3e531c1bbee6e61c1e7d0b68264e976795b4cf7aec68b9e66eb8',
}],
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ exts_list = [
('Ray', version, {
'source_tmpl': '%(namelower)s-%(version)s-cp311-cp311-manylinux2014_%(arch)s.whl',
'checksums': [{
'%(namelower)s-%(version)s-cp311-cp311-manylinux2014_x86_64.whl': (
'ray-2.9.1-cp311-cp311-manylinux2014_x86_64.whl': (
'fabc520990c1b98dde592813d62737e5e817460e0ac359f32ba029ace292cbe2'
),
'%(namelower)s-%(version)s-cp311-cp311-manylinux2014_aarch64.whl': (
'ray-2.9.1-cp311-cp311-manylinux2014_aarch64.whl': (
'1907649d69efdc1b9ffbc03db086f6d768216cb73908ebd4038ac5030effef9e'
),
}],
Expand Down

0 comments on commit c3d3e76

Please sign in to comment.