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 - by python -m build the Version field in METADATA is 2.0.0b1.dev0.
But when I run this in a python console the result is different:
import build.util
meta = build.util.project_wheel_metadata(".")
meta.get("Version")
'2.0.0b1.dev0dev'
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
Hello,
I'm not sure whether this is a problem with
build,pep517,importlib.metadataor something different.I triaged a potential bug in poetry 1.2.0a2 and realized the following:
When I build a wheel for the current
sqlalchemyfrom it's main branch - after cloning the repo - bypython -m buildtheVersionfield inMETADATAis2.0.0b1.dev0.But when I run this in a python console the result is different:
As you can see there's an additional
devat the end of the version.Any ideas what's going on?
Python: 3.10.2
build: 0.7.0
fin swimmer