-
Notifications
You must be signed in to change notification settings - Fork 0
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
#11 💚 support automatic dev versioning for ci builds #14
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I (Informational): this configuration file allows incrementing version numbers via the bump-my-version
library.
pre_commit_hooks = [] | ||
post_commit_hooks = [] | ||
|
||
[[tool.bumpversion.files]] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I: it will search the files listed here to sync the versions up
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Q: so the current_version
in the .bumpversion.toml
file and the version
in all the pyproject.toml
files within the project will automatically be updated and committed with each push to dev
(or whatever branch is specified)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct
@@ -58,6 +58,18 @@ jobs: | |||
- name: Publish | |||
run: | | |||
uv publish --publish-url https://test.pypi.org/legacy/ --token ${{ secrets.TEST_PYPI_TOKEN }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I: After pushing dev
to test.pypi.org, it will increment the version and commit that change
f483647
to
fe06042
Compare
fe06042
to
343afe7
Compare
No description provided.