Format expected names correctly for wheel checks
Wheel names use underscores, preventing project name matches. Change-Id: I99d59a064d948b281e4bc27b48912b2e250f4b39
This commit is contained in:
@ -13,6 +13,7 @@
|
||||
# under the License.
|
||||
|
||||
import requests
|
||||
import wheel.bdist_wheel
|
||||
|
||||
|
||||
def link_exists(url):
|
||||
@ -49,7 +50,7 @@ def wheel_py2_url(version, project):
|
||||
s='https://tarballs.openstack.org',
|
||||
v=version,
|
||||
r=repo_base,
|
||||
n=base,
|
||||
n=wheel.bdist_wheel.safer_name(base),
|
||||
)
|
||||
|
||||
|
||||
@ -60,7 +61,7 @@ def wheel_both_url(version, project):
|
||||
s='https://tarballs.openstack.org',
|
||||
v=version,
|
||||
r=repo_base,
|
||||
n=base,
|
||||
n=wheel.bdist_wheel.safer_name(base),
|
||||
)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user