Skip to content
Snippets Groups Projects
Unverified Commit af0f9dec authored by Marc Mueller's avatar Marc Mueller Committed by GitHub
Browse files

Prevent packages from accidentally installing poetry (#137560)

parent 5f6068ee
No related branches found
No related tags found
No related merge requests found
......@@ -168,6 +168,10 @@ pysnmplib==1000000000.0.0
# breaks getmac due to them both sharing the same python package name inside 'getmac'.
get-mac==1000000000.0.0
# Poetry is a build dependency. Installing it as a runtime dependency almost
# always indicates an issue with library requirements.
poetry==1000000000.0.0
# We want to skip the binary wheels for the 'charset-normalizer' packages.
# They are build with mypyc, but causes issues with our wheel builder.
# In order to do so, we need to constrain the version.
......
......@@ -206,6 +206,10 @@ pysnmplib==1000000000.0.0
# breaks getmac due to them both sharing the same python package name inside 'getmac'.
get-mac==1000000000.0.0
# Poetry is a build dependency. Installing it as a runtime dependency almost
# always indicates an issue with library requirements.
poetry==1000000000.0.0
# We want to skip the binary wheels for the 'charset-normalizer' packages.
# They are build with mypyc, but causes issues with our wheel builder.
# In order to do so, we need to constrain the version.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment