-
Notifications
You must be signed in to change notification settings - Fork 77
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
no requires_python delivered #773
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version
{
"component": "core",
"version": "3.68.1",
"package": "pulpcore",
"module": "pulpcore.app",
"domain_compatible": true
}
"component": "python",
"version": "3.12.5",
"package": "pulp-python",
"module": "pulp_python.app",
"domain_compatible": true
Deploy with pulp-operator
Describe the bug
In process of content upload no requires_python tag delivered to pulp repo
To Reproduce
export PKG="pip-24.3.1-py3-none-any.whl"
pulp python content upload --relative-path "$PKG" --file "$PKG"
result:
{
"pulp_href": "/pulp/api/v3/content/python/packages/019386a4-1fcc-7b7a-9974-9a6476f49e4f/",
"prn": "prn:python.pythonpackagecontent:019386a4-1fcc-7b7a-9974-9a6476f49e4f",
"pulp_created": "2024-12-02T09:12:03.280045Z",
"pulp_last_updated": "2024-12-02T09:12:03.280064Z",
"artifact": "/pulp/api/v3/artifacts/019386a4-1f37-7cb5-8317-32e3cab512a7/",
"filename": "pip-24.3.1-py3-none-any.whl",
"packagetype": "bdist_wheel",
"name": "pip",
"version": "24.3.1",
"sha256": "3790624780082365f47549d032f3770eeb2b1e8bd1f7b2e02dace1afa361b4ed",
"metadata_version": "2.1",
"summary": "The PyPA recommended tool for installing Python packages.",
"description": "pip - The Python Package Installer\n==================================\n\n.. |pypi-version| image:: https://img.shields.io/pypi/v/pip.svg\n :target: https://pypi.org/project/pip/\n :alt: PyPI\n\n.. |python-versions| image:: https://img.shields.io/pypi/pyversions/pip\n :target: https://pypi.org/project/pip\n :alt: PyPI - Python Version\n\n.. |docs-badge| image:: https://readthedocs.org/projects/pip/badge/?version=latest\n :target: https://pip.pypa.io/en/latest\n :alt: Documentation\n\n|pypi-version| |python-versions| |docs-badge|\n\npip is the
package installer
_ for Python. You can use pip to install packages from thePython Package Index
_ and other indexes.\n\nPlease take a look at our documentation for how to install and use pip:\n\n*Installation
\n*Usage
\n\nWe release updates regularly, with a new version every 3 months. Find more details in our documentation:\n\n*Release notes
\n*Release process
\n\nIf you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms:\n\n*Issue tracking
\n*Discourse channel
\n*User IRC
\n\nIf you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms:\n\n*GitHub page
\n*Development documentation
\n*Development IRC
\n\nCode of Conduct\n---------------\n\nEveryone interacting in the pip project's codebases, issue trackers, chat\nrooms, and mailing lists is expected to follow thePSF Code of Conduct
_.\n\n.. _package installer: https://packaging.python.org/guides/tool-recommendations/\n.. _Python Package Index: https://pypi.org\n.. _Installation: https://pip.pypa.io/en/stable/installation/\n.. _Usage: https://pip.pypa.io/en/stable/\n.. _Release notes: https://pip.pypa.io/en/stable/news.html\n.. _Release process: https://pip.pypa.io/en/latest/development/release-process/\n.. _GitHub page: https://github.com/pypa/pip\n.. _Development documentation: https://pip.pypa.io/en/latest/development\n.. _Issue tracking: https://github.com/pypa/pip/issues\n.. _Discourse channel: https://discuss.python.org/c/packaging\n.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa\n.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev\n.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md\n","description_content_type": "text/x-rst",
"keywords": "",
"home_page": "",
"download_url": "",
"author": "",
"author_email": "The pip developers <[email protected]>",
"maintainer": "",
"maintainer_email": "",
"license": "MIT",
"requires_python": "",
"project_url": "",
"project_urls": "["Homepage, [https://pip.pypa.io/](https://pip.pypa.io/%5C)", "Documentation, [https://pip.pypa.io](https://pip.pypa.io/)", "Source, [https://github.com/pypa/pip](https://github.com/pypa/pip%5C)", "Changelog, [https://pip.pypa.io/en/stable/news/](https://pip.pypa.io/en/stable/news/%5C)"]",
"platform": "",
"supported_platform": "",
"requires_dist": "[]",
"provides_dist": "[]",
"obsoletes_dist": "[]",
"requires_external": "[]",
"classifiers": "["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Build Tools", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy"]"
}
No data in requires_python filed -- "requires_python": ""
Expected behavior
Need data in requires_python filed -- "requires_python": ">=3.8"
The text was updated successfully, but these errors were encountered: