This is an automated email from the ASF dual-hosted git repository.
ryankert01 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/main by this push:
new e59b90f1b fix(qdp): drop invalid PyPI classifiers from qumat-qdp
(#1313)
e59b90f1b is described below
commit e59b90f1bd2de74cd043da56042fbc5509289771
Author: Ryan Huang <[email protected]>
AuthorDate: Thu May 14 01:13:07 2026 +0800
fix(qdp): drop invalid PyPI classifiers from qumat-qdp (#1313)
'Framework :: PyTorch' and 'Framework :: TensorFlow' are not in PyPI's
trove of valid classifiers, so PyPI/TestPyPI rejects qumat-qdp uploads
with HTTP 400. Remove them from qdp/qdp-python/pyproject.toml.
Discovered while uploading 0.6.0rc1 release candidates to TestPyPI.
---
qdp/qdp-python/pyproject.toml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/qdp/qdp-python/pyproject.toml b/qdp/qdp-python/pyproject.toml
index 56c25bb8b..5e719a3ab 100644
--- a/qdp/qdp-python/pyproject.toml
+++ b/qdp/qdp-python/pyproject.toml
@@ -25,9 +25,6 @@ classifiers = [
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
- "Framework :: PyTorch",
- "Framework :: TensorFlow",
-
]
dynamic = ["version"]