Files
python-pip-api/support-packaging-changes.patch
Dirk Mueller b1217e3300 - update to 0.0.34:
* meta: drop support for Python 3.7
- update to 0.0.33:
  * fix release workflow, corrective release
- update to 0.0.32:
  * Bump the actions group with 5 updates
- update to 0.0.31:
  * Handle editable projects with `pyproject.toml`

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip-api?expand=0&rev=24
2025-07-14 19:40:31 +00:00

20 lines
832 B
Diff

Index: pip_api-0.0.34/tests/test_parse_requirements.py
===================================================================
--- pip_api-0.0.34.orig/tests/test_parse_requirements.py
+++ pip_api-0.0.34/tests/test_parse_requirements.py
@@ -73,14 +73,6 @@ PEP508_PIP_EXAMPLE_WHEEL_FILE = "file://
"",
),
(
- # Version and URL can't be combined so this all gets parsed as a legacy version
- "pip==1.3.1@{url}\n".format(url=PEP508_PIP_EXAMPLE_URL),
- {"pip"},
- None,
- "pip==1.3.1@" + PEP508_PIP_EXAMPLE_URL, # Note no extra space after @
- "==1.3.1@" + PEP508_PIP_EXAMPLE_URL,
- ),
- (
# VCS markers at the beginning of a URL get stripped away
"git+" + PEP508_PIP_EXAMPLE_EGG,
{"pip"},