From eec59b57488b56277e9e82b5e81f0f3d94148f87 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 2 Jul 2021 13:42:04 +0300 Subject: python3-priority: Upgrade 1.3.0 -> 2.0.0 Upgrade to release 2.0.0: - Python 3.6 is the minimal support Python version. - Support for Python 3.7 has been added. - Support for Python 3.8 has been added. - Support for Python 3.9 has been added. - Support for Python 2.7 has been removed. - Support for Python 3.3 has been removed. - Support for Python 3.4 has been removed. - Support for Python 3.5 has been removed. - Support for PyPy (Python 2.7 compatible) has been removed. - Add type hints throughout and support PEP 561 via a py.typed file. This should allow projects to type check their usage of this dependency. - Throw TypeError when creating a priority tree with a maximum_streams value that is not an integer. - Throw ValueError when creating a priority tree with a maximum_streams value that is not a positive integer. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python-priority/python3-priority_1.3.0.bb | 10 ---------- .../python-priority/python3-priority_2.0.0.bb | 9 +++++++++ 2 files changed, 9 insertions(+), 10 deletions(-) delete mode 100644 meta-python/recipes-connectivity/python-priority/python3-priority_1.3.0.bb create mode 100644 meta-python/recipes-connectivity/python-priority/python3-priority_2.0.0.bb (limited to 'meta-python/recipes-connectivity') diff --git a/meta-python/recipes-connectivity/python-priority/python3-priority_1.3.0.bb b/meta-python/recipes-connectivity/python-priority/python3-priority_1.3.0.bb deleted file mode 100644 index 5d84571f9f..0000000000 --- a/meta-python/recipes-connectivity/python-priority/python3-priority_1.3.0.bb +++ /dev/null @@ -1,10 +0,0 @@ -DESCRIPTION = "A pure-Python implementation of the HTTP/2 priority tree" -HOMEPAGE = "https://github.com/python-hyper/priority" -LICENSE = "MIT" - -LIC_FILES_CHKSUM = "file://LICENSE;md5=ae57d8a09fc8b6b164d7357339619045" - -SRC_URI[md5sum] = "4f1ff52f7fa448e9d9cb46337ae86d1e" -SRC_URI[sha256sum] = "6bc1961a6d7fcacbfc337769f1a382c8e746566aaa365e78047abe9f66b2ffbe" - -inherit pypi setuptools3 diff --git a/meta-python/recipes-connectivity/python-priority/python3-priority_2.0.0.bb b/meta-python/recipes-connectivity/python-priority/python3-priority_2.0.0.bb new file mode 100644 index 0000000000..93b694c8b8 --- /dev/null +++ b/meta-python/recipes-connectivity/python-priority/python3-priority_2.0.0.bb @@ -0,0 +1,9 @@ +DESCRIPTION = "A pure-Python implementation of the HTTP/2 priority tree" +HOMEPAGE = "https://github.com/python-hyper/priority" +LICENSE = "MIT" + +LIC_FILES_CHKSUM = "file://LICENSE;md5=ae57d8a09fc8b6b164d7357339619045" + +SRC_URI[sha256sum] = "c965d54f1b8d0d0b19479db3924c7c36cf672dbf2aec92d43fbdaf4492ba18c0" + +inherit pypi setuptools3 -- cgit 1.2.3-korg