Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docstring to note it works on non-metapackages #99

Merged
merged 1 commit into from
Aug 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions skare3_tools/scripts/skare3_promote.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#!/usr/bin/env python
"""
Promote ska3 meta-packages from a list of channels to one target channel.
Promote ska3 meta-packages or packages from a list of channels to one target channel.

"Promotion" usually means copying conda package files from the source
channels to the target channel. The channels are expected to be within
the same directory, which is specified by the `ska3-conda` argument.

The meta-packages to be promoted must be defined in skare3. This script
reads the metapackage's meta.yaml requirements in skare3, finds the
corresponding packages in the source channels, and copies/moves them to the
target channel.
The packages to be promoted must be defined in skare3. If the package is
a ska3- metapackage, this script reads the metapackage's meta.yaml requirements
in skare3, finds the corresponding packages in the source channels, and copies/moves
them to the target channel.
"""
import argparse
import logging
Expand Down
Loading