Skip to content
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

Release v0.1.0 #236

Merged
merged 24 commits into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b15826f
Add some more basic checks to pre-commit
siddharth-krishna Mar 30, 2024
1ea91d0
Add release instructions to README
siddharth-krishna Mar 30, 2024
c13ad78
CI: Publish to TestPyPI
siddharth-krishna Mar 30, 2024
a74fe98
Fix publish permission; version to alpha for now
siddharth-krishna Mar 30, 2024
8ae889e
Fix publish directory
siddharth-krishna Mar 30, 2024
142dbff
Temporarily disable tests
siddharth-krishna Mar 30, 2024
cdffc06
Update ci.yml
siddharth-krishna Mar 30, 2024
536032c
Change version just for test pypi
siddharth-krishna Mar 30, 2024
79dd760
Fix package discovery
siddharth-krishna Mar 30, 2024
c2a3a67
Also bump __init__.py version
siddharth-krishna Mar 30, 2024
fdfea5b
Use built whl in CI to test package uploaded to PyPI
siddharth-krishna Mar 31, 2024
c3e765f
Bring back CI tests
siddharth-krishna Mar 31, 2024
29bc93e
Set publish action to happen only on release
siddharth-krishna Mar 31, 2024
ddd8827
Move pre-commit check back to after build & install to fix pyright
siddharth-krishna Mar 31, 2024
04b96fb
Fix installing from wheel file
siddharth-krishna Mar 31, 2024
8e550c3
Fix
siddharth-krishna Mar 31, 2024
7577f5a
Install dev dependencies; uninstall xl2times; install from wheel
siddharth-krishna Mar 31, 2024
7c86f1b
Don't forget to install build
siddharth-krishna Mar 31, 2024
12391db
Test the publish action
siddharth-krishna Mar 31, 2024
0e1ae40
Switch back to publishing only on release
siddharth-krishna Mar 31, 2024
9c3a966
Bump version to be able to publish again on release
siddharth-krishna Mar 31, 2024
54d05e8
Release v0.1.0
siddharth-krishna Mar 31, 2024
168640c
Merge branch 'main' into release-v0.1.0
siddharth-krishna Mar 31, 2024
f1ac068
Set version to v0.1.0 (not alpha)
siddharth-krishna Mar 31, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,5 +188,4 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: xl2times/dist/
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include = ["xl2times", "xl2times.*"]

[project]
name = "xl2times"
version = "0.1.0-alpha.2"
version = "0.1.0"
authors = [
{ name="Sam Webster", email="[email protected]" },
{ name="Tom Minka", email="[email protected]" },
Expand Down
Loading