Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.admin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.admin
Commits
bdbad623
Commit
bdbad623
authored
7 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Fix channel support url parsing"
This reverts commit
eb236725
.
parent
ab33a37d
No related branches found
No related tags found
1 merge request
!63
Conda package based CI
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gitlab/channel_support.py
+1
-10
1 addition, 10 deletions
gitlab/channel_support.py
with
1 addition
and
10 deletions
gitlab/channel_support.py
+
1
−
10
View file @
bdbad623
#!/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
(
'
.
'
,
''
)
...
@@ -27,7 +18,7 @@ def main(channel_url, name, version, py_ver, get_urls=False):
...
@@ -27,7 +18,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
=
[
_remove_address
(
url
)
for
url
in
urls
]
urls
=
[
url
.
replace
(
channel_url
,
''
)
for
url
in
urls
]
return
build_number
,
urls
return
build_number
,
urls
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment