Closed stevepiercy closed 7 years ago
The problem was that zest.releaser is case-sensitive for replacement of "version". Making the change by lowercasing VERSION
in my setup.py
resolves the issue:
version = '0.3.1'
#...
setup(name='pylons-sphinx-themes',
version=version,
Should this issue be a docs update, a feature request, or a bug report? I'll submit a PR for whatever the maintainers think is most appropriate.
Nice corner case! Well found.
To me, it is a bug. Uppercase VERSION
should be OK. I think I can fix it pretty quickly, I'll try that first.
See #217
Yup, that works. Thank you! I made a comment on the PR to uppercase "version" in its comment.
Can you try 6.10, just to make sure?
Confirmed! Thanks for the quick turnaround.
I am trying to move my project's release process from manual to zest.releaser. This is my first time using zest.releaser, so I might be using it incorrectly. I am trying to set a new release number, but it fails to set the new version number, going from 0.3.1 to 1.0. I have these relevant lines in my
setup.py
:See transcript and traceback below.
I searched through the issue tracker and source code, but didn't find an answer.
Any help appreciated.