Skip to content

Commit

Permalink
Update CHANGELOG, workflow for publishing to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
dcwatson committed Nov 8, 2024
1 parent f88bd00 commit 71d7245
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Publish

on: [workflow_dispatch]

env:
UV_PYTHON_DOWNLOADS: never
UV_PYTHON_PREFERENCE: only-system

jobs:
publish:
name: Publish to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/pzip
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Set up uv
uses: astral-sh/setup-uv@v3
- name: Build
run: uv build
- name: Publish
run: uv publish
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.2.0 (TBD)
## 1.2.0 (2024-11-08)

* Switched to [uv](https://github.com/astral-sh/uv)
* Dropped Python 3.8 support, test on Python 3.13
Expand Down

0 comments on commit 71d7245

Please sign in to comment.