-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add release instructions and CD automation #235
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
b15826f
Add some more basic checks to pre-commit
siddharth-krishna 1ea91d0
Add release instructions to README
siddharth-krishna c13ad78
CI: Publish to TestPyPI
siddharth-krishna a74fe98
Fix publish permission; version to alpha for now
siddharth-krishna 8ae889e
Fix publish directory
siddharth-krishna 142dbff
Temporarily disable tests
siddharth-krishna cdffc06
Update ci.yml
siddharth-krishna 536032c
Change version just for test pypi
siddharth-krishna 79dd760
Fix package discovery
siddharth-krishna c2a3a67
Also bump __init__.py version
siddharth-krishna fdfea5b
Use built whl in CI to test package uploaded to PyPI
siddharth-krishna c3e765f
Bring back CI tests
siddharth-krishna 29bc93e
Set publish action to happen only on release
siddharth-krishna ddd8827
Move pre-commit check back to after build & install to fix pyright
siddharth-krishna 04b96fb
Fix installing from wheel file
siddharth-krishna 8e550c3
Fix
siddharth-krishna 7577f5a
Install dev dependencies; uninstall xl2times; install from wheel
siddharth-krishna 7c86f1b
Don't forget to install build
siddharth-krishna 12391db
Test the publish action
siddharth-krishna 0e1ae40
Switch back to publishing only on release
siddharth-krishna 9c3a966
Bump version to be able to publish again on release
siddharth-krishna File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,13 @@ | |
requires = ["setuptools>=61.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
packages = ["xl2times"] | ||
[tool.setuptools.packages.find] | ||
where = [""] | ||
include = ["xl2times", "xl2times.*"] | ||
|
||
[project] | ||
name = "xl2times" | ||
version = "0.1.0" | ||
version = "0.1.0-alpha.2" | ||
authors = [ | ||
{ name="Sam Webster", email="[email protected]" }, | ||
{ name="Tom Minka", email="[email protected]" }, | ||
|
Oops, something went wrong.
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.
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'm bumping the version number to be able to test the publish action when I make this alpha pre-release (after merging this PR). In my next PR I'll set it back to 0.1.0 and publish to the real PyPI.