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 9878a9e commit e24e2bbCopy full SHA for e24e2bb
.github/workflows/multiplatform_build.yaml
@@ -40,6 +40,14 @@ jobs:
40
arch: "x64"
41
env: true
42
43
+ - if: matrix.os == 'ubuntu-24.04'
44
+ name: Install dependencies
45
+ run: sudo apt-get install libtinfo5
46
+
47
+ - if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04'
48
+ name: Set CXXFLAGS
49
+ run: export CXXFLAGS="-stdlib=libc++"
50
51
- name: Set up Python ${{ matrix.python-version }}
52
uses: actions/[email protected]
53
with:
@@ -53,7 +61,7 @@ jobs:
61
run: poetry install --no-cache --sync
54
62
55
63
- name: Build distribution package
56
- run: poetry build
64
+ run: poetry build --format wheel
57
65
58
66
- uses: actions/upload-artifact@v4
59
67
0 commit comments