All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] python3-packaging: upgrade 20.9 -> 21.0
@ 2021-07-06  3:02 Tim Orling
  2021-07-06  3:02 ` [PATCH 2/3] python3-hypothesis: upgrade 6.14.0 -> 6.14.1 Tim Orling
  2021-07-06  3:02 ` [PATCH 3/3] python3-zipp: upgrade 3.4.1 -> 3.5.0 Tim Orling
  0 siblings, 2 replies; 3+ messages in thread
From: Tim Orling @ 2021-07-06  3:02 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

21.0 - 2021-07-03

packaging is now only compatible with Python 3.6 and above.
Add support for zip files in parse_sdist_filename (:issue:`429`)

References:
https://github.com/pypa/packaging/issues/429

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 .../{python3-packaging_20.9.bb => python3-packaging_21.0.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-packaging_20.9.bb => python3-packaging_21.0.bb} (80%)

diff --git a/meta/recipes-devtools/python/python3-packaging_20.9.bb b/meta/recipes-devtools/python/python3-packaging_21.0.bb
similarity index 80%
rename from meta/recipes-devtools/python/python3-packaging_20.9.bb
rename to meta/recipes-devtools/python/python3-packaging_21.0.bb
index 92cf6a25fe8..23ecd9df5ea 100644
--- a/meta/recipes-devtools/python/python3-packaging_20.9.bb
+++ b/meta/recipes-devtools/python/python3-packaging_21.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/pypa/packaging"
 LICENSE = "Apache-2.0 & BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
 
-SRC_URI[sha256sum] = "5b327ac1320dc863dca72f4514ecc086f31186744b84a230374cc1fd776feae5"
+SRC_URI[sha256sum] = "7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7"
 
 inherit pypi setuptools3
 
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/3] python3-hypothesis: upgrade 6.14.0 -> 6.14.1
  2021-07-06  3:02 [PATCH 1/3] python3-packaging: upgrade 20.9 -> 21.0 Tim Orling
@ 2021-07-06  3:02 ` Tim Orling
  2021-07-06  3:02 ` [PATCH 3/3] python3-zipp: upgrade 3.4.1 -> 3.5.0 Tim Orling
  1 sibling, 0 replies; 3+ messages in thread
From: Tim Orling @ 2021-07-06  3:02 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

6.14.1 - 2021-07-02

This patch updates some internal type annotations. There is no user-visible change.

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 ...ython3-hypothesis_6.14.0.bb => python3-hypothesis_6.14.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-hypothesis_6.14.0.bb => python3-hypothesis_6.14.1.bb} (85%)

diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.14.0.bb b/meta/recipes-devtools/python/python3-hypothesis_6.14.1.bb
similarity index 85%
rename from meta/recipes-devtools/python/python3-hypothesis_6.14.0.bb
rename to meta/recipes-devtools/python/python3-hypothesis_6.14.1.bb
index 89071b2a974..61598c3a161 100644
--- a/meta/recipes-devtools/python/python3-hypothesis_6.14.0.bb
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.14.1.bb
@@ -7,7 +7,7 @@ PYPI_PACKAGE = "hypothesis"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "9bdee01ae260329b16117e9b0229a839b4a77747a985922653f595bd2a6a541a"
+SRC_URI[sha256sum] = "88b0736a5691b68b8e16a4b7ee8e4c8596810c5a20989ea5b5f64870a7c25740"
 
 RDEPENDS_${PN} += " \
     python3-attrs \
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 3/3] python3-zipp: upgrade 3.4.1 -> 3.5.0
  2021-07-06  3:02 [PATCH 1/3] python3-packaging: upgrade 20.9 -> 21.0 Tim Orling
  2021-07-06  3:02 ` [PATCH 2/3] python3-hypothesis: upgrade 6.14.0 -> 6.14.1 Tim Orling
@ 2021-07-06  3:02 ` Tim Orling
  1 sibling, 0 replies; 3+ messages in thread
From: Tim Orling @ 2021-07-06  3:02 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

v3.5.0
Issue 74 and bpo-44095: Added .suffix, .suffixes, and .stem properties.

References:
https://github.com/jaraco/zipp/issues/74
https://bugs.python.org/issue44095
https://github.com/python/cpython/pull/26129

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 .../python/{python3-zipp_3.4.1.bb => python3-zipp_3.5.0.bb}    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-zipp_3.4.1.bb => python3-zipp_3.5.0.bb} (77%)

diff --git a/meta/recipes-devtools/python/python3-zipp_3.4.1.bb b/meta/recipes-devtools/python/python3-zipp_3.5.0.bb
similarity index 77%
rename from meta/recipes-devtools/python/python3-zipp_3.4.1.bb
rename to meta/recipes-devtools/python/python3-zipp_3.5.0.bb
index 191d3b38ad6..ab12601e4e9 100644
--- a/meta/recipes-devtools/python/python3-zipp_3.4.1.bb
+++ b/meta/recipes-devtools/python/python3-zipp_3.5.0.bb
@@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/jaraco/zipp"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6"
 
-SRC_URI[md5sum] = "3d91c7ab73b62ac3674210df94df600a"
-SRC_URI[sha256sum] = "3607921face881ba3e026887d8150cca609d517579abe052ac81fc5aeffdbd76"
+SRC_URI[sha256sum] = "f5812b1e007e48cff63449a5e9f4e7ebea716b4111f9c4f9a645f91d579bf0c4"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-07-06  3:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-06  3:02 [PATCH 1/3] python3-packaging: upgrade 20.9 -> 21.0 Tim Orling
2021-07-06  3:02 ` [PATCH 2/3] python3-hypothesis: upgrade 6.14.0 -> 6.14.1 Tim Orling
2021-07-06  3:02 ` [PATCH 3/3] python3-zipp: upgrade 3.4.1 -> 3.5.0 Tim Orling

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.