-
Notifications
You must be signed in to change notification settings - Fork 1
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
PyPI Action Enhancement #8
Comments
We want pre-commit and pytest to run on every commit--regardless of tag. Do we also want to push to testpypi on every commit? If so, in our |
Perhaps the requirements could be listed differently:
|
Tried pep440-pre: I'm not crazy about it dropping the hash from a dev version. Going to try this as mentioned in Versioneer's issue tracker. The issue appears to be the Github |
Ah, I misunderstood PyPI's requirements. I didn't realize the issue wasn't the 'untagged' as much as PyPI having a standard nomenclature which doesn't allow for '+', hashes (referred to as a "local version identifier"), etc. Back to |
The latest upload from the GH action now places the tag in the correct order, after the latest stable ( |
Workflow:
git commit -m "message" git tag 1.2.3 git push --tags
The GH Action for pushing to PyPI should trigger when a tagged commit is pushed to
main
. The following steps should occur and each step should pass before moving to the next step.main
The text was updated successfully, but these errors were encountered: