makes changes to publish to PyPI #121
Merged
+137
−37
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Renames the project to
eai-delphi
, sets up fully automated releases from CI, adds a PyPI publish GitHub Action, and moves tests outside of the package, since that's where they are in https://github.com/pypa/sampleproject.The fully automated releases use the commit messages to determine the next semantic version number. For example:
fix:
increments the PATCH version, e.g. 0.0.0 -> 0.0.1feat:
increments the MINOR version, e.g. 0.0.0 -> 0.1.0BREAKING CHANGE:
in the footer, increments the MAJOR version, e.g. 0.0.0 -> 1.0.0.IMO, this works best if you select the Squash and merge option on PRs, to edit and use the merge message.
Important
Before merging,
Fixes #116