diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2022-10-05 13:16:09 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-10-05 08:24:50 -0700 |
commit | b63f18b6f05fc7ae9aa133897cb60957ff293a14 (patch) | |
tree | c74728fe43b4c496a77792ebec664cc5faeb88fd | |
parent | b5ec019f2b882ff15559bb14941ab62cfb8f81e7 (diff) | |
download | meta-openembedded-b63f18b6f05fc7ae9aa133897cb60957ff293a14.tar.gz |
python3-rdflib: Upgrade 6.1.1 -> 6.2.0
Upgrade to release 6.2.0:
- SPARQL: Fixed handing of HAVING clause with variable composition
- JSON-LD parser: better support for content negotiation
- Removed the following functions that were marked as deprecated
and scheduled for removal in version 6.0.0: Graph.load,
Graph.seq, Graph.comment, Graph.label
- Use functools.total_ordering to implement most comparison
operations for rdflib.paths.Path
- Fixed error handling for invalid URIs
- InfixOWL: Fixed handling of cardinality 0
- Added quad support to handling to
rdflib.graph.ReadOnlyGraphAggregate.quad
- Fixed base validation used when joining URIs
- Add GEO defined namespace for GeoSPARQL
- Fixed some issues with SPARQL Algebra handling/translation
- Fix SPARQL CSV result serialization of blank nodes
- Added a URIRef.fragment property
- Remove superfluous newline from N-Triples output
- Added a bunch of type hints
License-Update: Update years.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-rdflib_6.2.0.bb (renamed from meta-python/recipes-devtools/python/python3-rdflib_6.1.1.bb) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-rdflib_6.1.1.bb b/meta-python/recipes-devtools/python/python3-rdflib_6.2.0.bb index 27f65dced..282d40709 100644 --- a/meta-python/recipes-devtools/python/python3-rdflib_6.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-rdflib_6.2.0.bb | |||
@@ -1,8 +1,8 @@ | |||
1 | SUMMARY = "RDFLib is a pure Python package for working with RDF" | 1 | SUMMARY = "RDFLib is a pure Python package for working with RDF" |
2 | LICENSE = "BSD-3-Clause" | 2 | LICENSE = "BSD-3-Clause" |
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b6cde159c801514e0e45a40cf0a9d3d9" | 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=bcae79bd3c84b857f42a98a7ccf6ad47" |
4 | 4 | ||
5 | SRC_URI[sha256sum] = "8dbfa0af2990b98471dacbc936d6494c997ede92fd8ed693fb84ee700ef6f754" | 5 | SRC_URI[sha256sum] = "62dc3c86d1712db0f55785baf8047f63731fa59b2682be03219cb89262065942" |
6 | 6 | ||
7 | inherit pypi setuptools3 | 7 | inherit pypi setuptools3 |
8 | 8 | ||
@@ -12,6 +12,8 @@ RDEPENDS:${PN} += " \ | |||
12 | ${PYTHON_PN}-logging \ | 12 | ${PYTHON_PN}-logging \ |
13 | ${PYTHON_PN}-numbers \ | 13 | ${PYTHON_PN}-numbers \ |
14 | ${PYTHON_PN}-xml \ | 14 | ${PYTHON_PN}-xml \ |
15 | ${PYTHON_PN}-compression \ | ||
16 | ${PYTHON_PN}-core \ | ||
15 | " | 17 | " |
16 | 18 | ||
17 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |