Skip to content
Snippets Groups Projects
Commit eb236725 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix channel support url parsing

parent 0f9a4324
No related branches found
No related tags found
1 merge request!63Conda package based CI
#!/usr/bin/env python #!/usr/bin/env python
import re import re
from future.standard_library import install_aliases
install_aliases()
from urllib.parse import urlparse
from conda.exports import get_index from conda.exports import get_index
def _remove_address(url):
return urlparse(url).path
def main(channel_url, name, version, py_ver, get_urls=False): def main(channel_url, name, version, py_ver, get_urls=False):
# no dot in py_ver # no dot in py_ver
py_ver = py_ver.replace('.', '') py_ver = py_ver.replace('.', '')
...@@ -18,7 +27,7 @@ def main(channel_url, name, version, py_ver, get_urls=False): ...@@ -18,7 +27,7 @@ def main(channel_url, name, version, py_ver, get_urls=False):
if match and match.group() == 'py{}'.format(py_ver): if match and match.group() == 'py{}'.format(py_ver):
build_number = max(build_number, dist.build_number + 1) build_number = max(build_number, dist.build_number + 1)
urls.append(index[dist].url) urls.append(index[dist].url)
urls = [url.replace(channel_url, '') for url in urls] urls = [_remove_address(url) for url in urls]
return build_number, urls return build_number, urls
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment