-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Closed
Labels
kind/bugSomething isn't working as expectedSomething isn't working as expectedstatus/triageThis issue needs to be triagedThis issue needs to be triaged
Description
- Poetry version: 1.4.2
- Python version: 3.11.3
- OS version and name: Arch Linux
- pyproject.toml: See below
- I am on the latest stable Poetry version, installed using a recommended method.
- I have searched the issues of this repo and believe that this is not a duplicate.
- I have consulted the FAQ and blog for any relevant entries or release notes.
- If an exception occurs when executing a command, I executed it again in debug mode (
-vvvoption) and have included the output below.
Issue
Poetry hangs when trying to resolve dependencies for faust-large-message-serializer = "^2.0.1". The issue can be reproduced with this pyproject.toml file, by running poetry lock.
[tool.poetry]
name = "faust-bug"
version = "0.1.0"
description = ""
authors = ["Mathieu Lemay <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
faust-large-message-serializer = "^2.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"It seems to be related to urllib3 now being at version 2.0.2 (versions 2.0.0 and 2.0.1 have been yanked). If I add the following dependency, everything works as expected: urllib3 = "<2".
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
kind/bugSomething isn't working as expectedSomething isn't working as expectedstatus/triageThis issue needs to be triagedThis issue needs to be triaged