This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Requirement syntax broken when extras indicated on url_req
Type: Stage: resolved
Components: Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jaraco Nosy List: jaraco, miss-islington
Priority: normal Keywords: patch

Created on 2021-12-16 19:14 by jaraco, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 30151 merged jaraco, 2021-12-16 19:31
PR 30156 merged miss-islington, 2021-12-16 20:48
PR 30157 merged jaraco, 2021-12-16 21:31
Messages (4)
msg408727 - (view) Author: Jason R. Coombs (jaraco) * (Python committer) Date: 2021-12-16 19:14
In https://github.com/python/importlib_metadata/issues/357, a user reported an issue where a requirement generated by importlib.metadata from egg info metadata would result in a parse error attempting to parse the error. A fix was released in importlib_metadata 4.8.3.
msg408737 - (view) Author: Jason R. Coombs (jaraco) * (Python committer) Date: 2021-12-16 20:48
New changeset 109d96602199a91e94eb14b8cb3720841f22ded7 by Jason R. Coombs in branch 'main':
bpo-46105: Honor spec when generating requirement specs with urls and extras. (GH-30151)
https://github.com/python/cpython/commit/109d96602199a91e94eb14b8cb3720841f22ded7
msg408739 - (view) Author: miss-islington (miss-islington) Date: 2021-12-16 21:19
New changeset 09d7319bfe0006d9aa3fc14833b69c24ccafdca6 by Miss Islington (bot) in branch '3.10':
bpo-46105: Honor spec when generating requirement specs with urls and extras. (GH-30151)
https://github.com/python/cpython/commit/09d7319bfe0006d9aa3fc14833b69c24ccafdca6
msg408745 - (view) Author: Jason R. Coombs (jaraco) * (Python committer) Date: 2021-12-17 00:58
New changeset 864ec170e14b663f999eb415a4f1a0067ec6833a by Jason R. Coombs in branch '3.9':
[3.9] bpo-46105: Honor spec when generating requirement specs with urls and extras. (GH-30151). (GH-30157)
https://github.com/python/cpython/commit/864ec170e14b663f999eb415a4f1a0067ec6833a
History
Date User Action Args
2022-04-11 14:59:53adminsetgithub: 90263
2021-12-17 00:58:56jaracosetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-12-17 00:58:27jaracosetmessages: + msg408745
2021-12-16 21:31:13jaracosetpull_requests: + pull_request28376
2021-12-16 21:19:22miss-islingtonsetmessages: + msg408739
2021-12-16 20:48:51jaracosetmessages: + msg408737
2021-12-16 20:48:43miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request28375
2021-12-16 19:31:05jaracosetkeywords: + patch
stage: patch review
pull_requests: + pull_request28370
2021-12-16 19:14:18jaracocreate