1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Description: Removed references to rapidjson in pyproject.html
rapidjson is being installed along with python-awkward via apt
and rapidjson upstream needs recursive git clone but is not
needed here due to rapidjson already being installed via apt.
This patch also fixes build errors for a non existent license
of rapidjson.
.
python-awkward (2.8.9-1) unstable; urgency=medium
.
* Package Adoption
* Updated to version 2.8.9
* Updated dependency pybind11-dev to 3.0.1 to fix C++ errors (Closes #1111956)
* Remove rapidjson license reference in pyproject.toml
Author: Aryan Karamtoth <spaciouscoder78@disroot.org>
Forwarded: not-needed
Last-Update: 2025-09-29
--- python-awkward-2.8.9.orig/awkward-cpp/pyproject.toml
+++ python-awkward-2.8.9/awkward-cpp/pyproject.toml
@@ -45,7 +45,7 @@ classifiers = [
"Topic :: Utilities",
]
license = "BSD-3-Clause AND MIT"
-license-files = ["LICENSE", "rapidjson/license.txt"]
+license-files = ["LICENSE"]
requires-python = ">=3.9"
[project.urls]
|