Skip to content

Commit 2d948ff

Browse files
committed
Fix workflow
1 parent 38b40e8 commit 2d948ff

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,12 @@ jobs:
121121
with:
122122
path: dist
123123

124+
- name: Flatten wheels
125+
run: |
126+
mkdir wheels
127+
find dist \( -name "*.whl" -o -name "*.tar.gz" \) -exec cp {} wheels/ \;
128+
124129
- name: Publish to PyPI
125130
uses: pypa/gh-action-pypi-publish@release/v1
126131
with:
127-
packages-dir: dist
132+
packages-dir: wheels

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyquartic"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Fast and highly accurate cubic and quartic equation solvers"
99
authors = [{name = "sparklost"}]
1010
license = "GPL-3.0-or-later"

0 commit comments

Comments
 (0)