Update#27
Conversation
|
what about doing automated github releases when publishing a package to pypi? at least for me its kinda confusing that there is no github release for the current |
|
I usually use this kind of workflow. It publishes to PyPI when I push a version tag, and create a GitHub release by looking at the changelog. I can do that in another PR. |
yeah thats a good idea. This pr is already huge |
| name = "anycorn" | ||
| dynamic = ["version"] | ||
| requires-python = ">=3.9" | ||
| version = "0.0.0" |
There was a problem hiding this comment.
| version = "0.0.0" | |
| version = "0.18.2" |
There was a problem hiding this comment.
version will be set during the publish step where it is taken from the tag that has been pushed. no need to set the version manually anymore
|
Thanks @leon1995. |
No description provided.