Replies: 1 comment
-
Poetry aims to build wheels that work within the overall wheel system; wheels do not have a way of overriding dependencies, hence poetry won't do anything special in that regard. There is talk of adding virtual style dependencies in the works, upstream, that might solve these issues, eventually. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In one of my projects, a dependency uses
psycopg2
whereas the project already uses apsycopg2-binary
.Besides the redundancy, there are cases when the
psycopg2
package does not build on some machines (Macs) and the recommended resolution is to usepsycopg2-binary
. However, we're unable to find a definitive way to override the subdependency without forking the project (we've raised the issue with the dependency author as well)It'd be great if we could override/ignore a dependency via poetry as well
Beta Was this translation helpful? Give feedback.
All reactions