|
1 | 1 | [project] |
2 | 2 | name = "stable-audio-3" |
3 | | -version = "0.1.0" |
| 3 | +version = "0.1.1" |
4 | 4 | description = "Stable Audio 3: A state-of-the-art open platform for fast, high-quality generated audio and music" |
5 | 5 | readme = "README.md" |
6 | 6 | requires-python = ">=3.10" |
@@ -125,14 +125,18 @@ explicit = true |
125 | 125 | flash-attn = [ |
126 | 126 | { url = "https://github.com/kingbri1/flash-attention/releases/download/v2.8.3/flash_attn-2.8.3+cu128torch2.7.0cxx11abiFALSE-cp310-cp310-win_amd64.whl", marker = "sys_platform == 'win32'" }, |
127 | 127 | ] |
128 | | -# aubio ships NO wheels on PyPI (source-only since 0.4.9 in 2019), so a default |
129 | | -# install compiles it from C — which needs MSVC Build Tools that a fresh Windows |
130 | | -# box does not have, breaking the zero-terminal install. Pin a prebuilt Windows |
131 | | -# wheel (built here, cp310/win_amd64 — the locked Windows Python) so aubio stays |
132 | | -# a first-class dependency but installs with no compiler. Linux/macOS keep |
133 | | -# building from the PyPI sdist (they ship a compiler by default). |
| 128 | +# aubio ships NO wheels on PyPI (source-only since 0.4.9 in 2019) and its 2019 C |
| 129 | +# source does not compile on a stock machine (no MSVC on Windows; the aubio#402 |
| 130 | +# const-pointer mismatch is a hard error on modern clang/gcc). Pin a prebuilt |
| 131 | +# cp310 wheel per shipped platform so aubio stays a first-class dependency and |
| 132 | +# installs with no compiler anywhere. The mac arm64 and linux x86_64 wheels are |
| 133 | +# built by .github/workflows/build-aubio-wheels.yml (cibuildwheel against NumPy |
| 134 | +# 2.x); the Windows wheel is built the same way. Platforms without a wheel here |
| 135 | +# (e.g. linux aarch64) fall back to the PyPI sdist. |
134 | 136 | aubio = [ |
135 | 137 | { path = "wheels/aubio-0.4.9-cp310-cp310-win_amd64.whl", marker = "sys_platform == 'win32'" }, |
| 138 | + { path = "wheels/aubio-0.4.9-cp310-cp310-macosx_11_0_arm64.whl", marker = "sys_platform == 'darwin' and platform_machine == 'arm64'" }, |
| 139 | + { path = "wheels/aubio-0.4.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", marker = "sys_platform == 'linux' and platform_machine == 'x86_64'" }, |
136 | 140 | ] |
137 | 141 | torch = [ |
138 | 142 | { index = "pytorch-cu126", marker = "sys_platform == 'linux' and platform_machine == 'x86_64'" }, |
|
0 commit comments