twisted-iocpsupport has a pep517 build-dep of "Cython":
https://github.com/twisted/twisted-iocpsupport/blob/f0b581834576ff02f3a4f4d17e76aa0740a2e911/pyproject.toml#L5
when I run fullrelease without the build-deps installed I get an error:
$ git clone git@github.com:twisted/twisted-iocpsupport.git
$ pipx run --spec="zest.releaser[recommended]" bumpversion
Checking version bump for normal release.
CRITICAL: The setup.py of this package has an error:
Traceback (most recent call last):
CRITICAL: No version found.
If I manually install the deps I get this:
$ pipx run --pip-args="cython" --spec="zest.releaser[recommended]" bumpversion
Checking version bump for normal release.
Last tag: v1.0.0
Current version: 1.0.1.dev0
No version bump needed.
I think zest.releaser should be using pep517.meta.load(".").version to get the version
twisted-iocpsupport has a pep517 build-dep of "Cython":
https://github.com/twisted/twisted-iocpsupport/blob/f0b581834576ff02f3a4f4d17e76aa0740a2e911/pyproject.toml#L5
when I run fullrelease without the build-deps installed I get an error:
If I manually install the deps I get this:
I think zest.releaser should be using
pep517.meta.load(".").versionto get the version