-
Notifications
You must be signed in to change notification settings - Fork 42
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
Add import export support of python content #610
Conversation
requires pulp/pulp_python#580 |
pulpcore/cli/python/context.py
Outdated
@@ -71,6 +71,7 @@ class PulpPythonRepositoryContext(PulpRepositoryContext): | |||
ENTITIES = _("python repositories") | |||
ID_PREFIX = "repositories_python_python" | |||
VERSION_CONTEXT = PulpPythonRepositoryVersionContext | |||
CAPABILITIES = {"pulpexport": [PluginRequirement("python")]} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to include the version of pulp_python to include this feature.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, we have to wait for it to be included in the next pulp_python release.
7c8ac47
to
a16e770
Compare
a16e770
to
50f0049
Compare
@@ -0,0 +1 @@ | |||
Add import export support of python content |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add import export support of python content | |
Added import export support of python content. |
CAPABILITIES = {"sync": [PluginRequirement("python")]} | ||
CAPABILITIES = { | ||
"sync": [PluginRequirement("python")], | ||
"pulpexport": [PluginRequirement("python")], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm almost certain, this needs a version dependency (unless it's >=3.1.0).
Marking as draft while we wait on the server plugin parts. We would love to see you coming back on these. |
Completed in #887 |
Review Checklist:
fixes #609