We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38b40e8 commit 2d948ffCopy full SHA for 2d948ff
.github/workflows/build-and-publish.yml
@@ -121,7 +121,12 @@ jobs:
121
with:
122
path: dist
123
124
+ - name: Flatten wheels
125
+ run: |
126
+ mkdir wheels
127
+ find dist \( -name "*.whl" -o -name "*.tar.gz" \) -exec cp {} wheels/ \;
128
+
129
- name: Publish to PyPI
130
uses: pypa/gh-action-pypi-publish@release/v1
131
- packages-dir: dist
132
+ packages-dir: wheels
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "pyquartic"
7
-version = "0.1.4"
+version = "0.1.5"
8
description = "Fast and highly accurate cubic and quartic equation solvers"
9
authors = [{name = "sparklost"}]
10
license = "GPL-3.0-or-later"
0 commit comments