-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong Version detected with project_wheel_metadata #3088
Comments
|
Okay, the |
Yeah, it seems like a bug in setuptools. @jaraco could you transfer the issue? |
A similar issue was reported in this comment. There may already be a bug reported about it. I'd appreciate help to triage. |
Poetry 1.2.x introduces a new feature, package groups, which allows us to split our dependencies much like how you might see projects use requirements-*.txt or requirements/*.txt to split and/or bundle them into groups. Making this change required downgrading to SQLAlchemy==1.4 and replacing psycopg with psycopg2 as I hit the following bug after updating poetry: pypa/setuptools#3088 Once this is resolved (or an SQLAlchemy==2 release happens) we'll return to using sqlalchemy2+psycopg.
Hello,
I'm not sure whether this is a problem with
build
,pep517
,importlib.metadata
or something different.I triaged a potential bug in poetry 1.2.0a2 and realized the following:
When I build a wheel for the current
sqlalchemy
from it's main branch - after cloning the repo - bypython -m build
theVersion
field inMETADATA
is2.0.0b1.dev0
.But when I run this in a python console the result is different:
As you can see there's an additional
dev
at the end of the version.Any ideas what's going on?
Python: 3.10.2
build: 0.7.0
fin swimmer
The text was updated successfully, but these errors were encountered: