Skip to content

Commit 8274051

Browse files
Merge pull request #117 from aboutcode-org/fix-release-wheel
Fix missing release wheels
2 parents 446c25c + 14aee0f commit 8274051

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/pypi-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
- name: Set up Python
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: 3.12
31+
python-version: 3.13
3232

3333
- name: Install pypa/build and twine
3434
run: python -m pip install --user --upgrade build twine pkginfo
3535

3636
- name: Build a binary wheel and a source tarball
37-
run: python -m build --sdist --outdir dist/
37+
run: python -m build --wheel --sdist --outdir dist/
3838

39-
- name: Validate wheel and sdis for Pypi
39+
- name: Validate wheels and sdists for Pypi
4040
run: python -m twine check dist/*
4141

4242
- name: Upload built archives

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
v30.4.3 - 2025-06-25
5+
--------------------
6+
7+
This is a minor bugfix release:
8+
9+
- Release license-expression wheels properly
10+
411
v30.4.2 - 2025-06-25
512
--------------------
613

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = license-expression
3-
version = 30.4.2
3+
version = 30.4.3
44
license = Apache-2.0
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390

0 commit comments

Comments
 (0)