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 d3d0f46 commit b0bc957Copy full SHA for b0bc957
.github/workflows/build-wheels.yml
@@ -57,17 +57,20 @@ jobs:
57
# Convert poetry project to pdm
58
pdm import -f poetry pyproject.toml
59
60
+ # Initialize PDM project
61
+ pdm init -n
62
+
63
# Build wheel with bundled dependencies
- pdm build --no-sdist --wheel --bundle-dependencies
64
+ pdm build --no-sdist
65
66
# Move wheels to dist directory
67
mkdir -p dist
- mv dist/*.whl dist/
68
+ mv __pypackages__/*/*.whl dist/
69
shell: bash
70
71
- name: Build source distribution
72
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
- run: pdm build --no-wheel --sdist
73
+ run: pdm build --no-wheel
74
75
76
- name: Upload to GitHub Actions
0 commit comments