Skip to content

Commit e08cb11

Browse files
authored
Merge pull request #261 from ai-agent-assembly/v0.0.1/AAASM-4648/fix_os_classifier
[AAASM-4648] 📝 (packaging): Fix misleading OS classifier for platform wheels
2 parents 0c14a43 + 43e2c67 commit e08cb11

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ classifiers = [
1717
"Topic :: Software Development :: Libraries :: Python Modules",
1818
"Topic :: Scientific/Engineering :: Artificial Intelligence",
1919
"License :: OSI Approved :: MIT License",
20-
"Operating System :: OS Independent",
20+
# AAASM-4648: this package ships platform-specific native (Rust-extension)
21+
# wheels for macOS and Linux only — no Windows wheel is built. The prior
22+
# "Operating System :: OS Independent" classifier was false and led Windows
23+
# users to a from-source build that requires a Rust/maturin toolchain. List
24+
# the OSes we actually publish wheels for instead.
25+
"Operating System :: POSIX :: Linux",
26+
"Operating System :: MacOS",
2127
"Programming Language :: Python :: 3",
2228
"Programming Language :: Python :: 3.12",
2329
"Programming Language :: Python :: 3.13",

0 commit comments

Comments
 (0)