From 45c023dbe2472371de91c405db29097869f46d30 Mon Sep 17 00:00:00 2001 From: anay Date: Wed, 22 Jul 2026 00:33:48 -0700 Subject: [PATCH] fix(packaging): declare macOS support --- pyproject.toml | 2 +- tests/test_public_contract.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 087f6f41..539a6248 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", - "Operating System :: OS Independent", + "Operating System :: MacOS", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.12", "Topic :: Documentation", diff --git a/tests/test_public_contract.py b/tests/test_public_contract.py index c033f670..0f05ed81 100644 --- a/tests/test_public_contract.py +++ b/tests/test_public_contract.py @@ -164,7 +164,8 @@ def test_python_package_metadata_declares_readme_and_license(): "License :: OSI Approved :: Apache Software License" not in project["classifiers"] ) - assert "Operating System :: OS Independent" in project["classifiers"] + assert "Operating System :: MacOS" in project["classifiers"] + assert "Operating System :: OS Independent" not in project["classifiers"] assert "Topic :: Software Development :: Documentation" in project["classifiers"]