From 46ce316a2ac64edea6ff3d6b7807ac40c0920d8b Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Thu, 16 Feb 2023 01:17:48 -0600 Subject: [PATCH] docs: Add Environment :: WebAssembly :: Emscripten PyPI trove classifier (#2100) * Add the PyPI Environment :: WebAssembly :: Emscripten trove classifier to the PyPI metadata as pyhf can run on a WASM build of CPython. - c.f. https://discuss.python.org/t/do-we-want-classifiers-for-webassembly-on-pypi/22712 * Update hatchling lower bound to v1.13.0, the first version to support the Environment :: WebAssembly trove classifiers. --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4d287623f1..bb2d30930a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,8 @@ [build-system] -requires = ["hatchling>=1.0.0", "hatch-vcs"] +requires = [ + "hatchling>=1.13.0", + "hatch-vcs>=0.3.0", +] build-backend = "hatchling.build" [project] @@ -26,6 +29,7 @@ keywords = [ ] classifiers = [ "Development Status :: 4 - Beta", + "Environment :: WebAssembly :: Emscripten", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3",