Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
conda
manifest-rules
Commits
e4d82c83
Commit
e4d82c83
authored
Jul 30, 2021
by
Paul McCarthy
🚵
Browse files
BF: get_channel_packages returns dict, not list
parent
1ee29c88
Changes
1
Hide whitespace changes
Inline
Side-by-side
manifest_rules/generate_environment_files.py
View file @
e4d82c83
...
...
@@ -46,7 +46,7 @@ def need_internal_channel(release_info, packages):
internal_packages
=
get_channel_packages
(
channel_url
,
username
=
username
,
password
=
password
)
internal_packages
=
[
p
.
name
for
p
in
internal_packages
]
internal_packages
=
list
(
internal_packages
.
keys
())
packages
=
[
p
.
split
()[
0
]
for
p
in
packages
]
return
any
([
p
in
internal_packages
for
p
in
packages
])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment