All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/3] python3-imageio: Upgrade 2.14.1 -> 2.15.0
@ 2022-02-10 11:34 Leon Anavi
  2022-02-10 11:34 ` [meta-python][PATCH 2/3] python3-humanize: Upgrade 3.13.1 -> 3.14.0 Leon Anavi
  2022-02-10 11:34 ` [meta-python][PATCH 3/3] python3-bitarray: Upgrade 2.3.5 -> 2.3.6 Leon Anavi
  0 siblings, 2 replies; 3+ messages in thread
From: Leon Anavi @ 2022-02-10 11:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.15.0:

- Fix webcam FPS settings on MacOS
- Add format_hint to v3 API
- Make tifffile read resolution metadata
- Make RTD fail on warnings during CI
- Remove link to download tracker
- Type annotations for pillow
- Contribution guidelines
- Deprecate python 3.6 support

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-imageio_2.14.1.bb => python3-imageio_2.15.0.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-imageio_2.14.1.bb => python3-imageio_2.15.0.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.14.1.bb b/meta-python/recipes-devtools/python/python3-imageio_2.15.0.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-imageio_2.14.1.bb
rename to meta-python/recipes-devtools/python/python3-imageio_2.15.0.bb
index 736a18262..e3462ee44 100644
--- a/meta-python/recipes-devtools/python/python3-imageio_2.14.1.bb
+++ b/meta-python/recipes-devtools/python/python3-imageio_2.15.0.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=7b9bbbb543b6af3e6b53f9b7fb68f71d"
 
-SRC_URI[sha256sum] = "709c18f800981e4286abe4bd86b6c9b5bb6e285b6b933b5ba0962ef8e7994058"
+SRC_URI[sha256sum] = "d0d7abb4e5c4044c06fc573233489c4a25582698f93ca94f7bd70b6f4ab172ec"
 
 inherit pypi setuptools3
 
-- 
2.30.2



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

* [meta-python][PATCH 2/3] python3-humanize: Upgrade 3.13.1 -> 3.14.0
  2022-02-10 11:34 [meta-python][PATCH 1/3] python3-imageio: Upgrade 2.14.1 -> 2.15.0 Leon Anavi
@ 2022-02-10 11:34 ` Leon Anavi
  2022-02-10 11:34 ` [meta-python][PATCH 3/3] python3-bitarray: Upgrade 2.3.5 -> 2.3.6 Leon Anavi
  1 sibling, 0 replies; 3+ messages in thread
From: Leon Anavi @ 2022-02-10 11:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.14.0:

- Don't deprecate time.Unit enumeration
- Use humanize.intcomma to format years in time module

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-humanize_3.13.1.bb => python3-humanize_3.14.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-humanize_3.13.1.bb => python3-humanize_3.14.0.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-humanize_3.13.1.bb b/meta-python/recipes-devtools/python/python3-humanize_3.14.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-humanize_3.13.1.bb
rename to meta-python/recipes-devtools/python/python3-humanize_3.14.0.bb
index 2c601b5de..6b2fd3ad6 100644
--- a/meta-python/recipes-devtools/python/python3-humanize_3.13.1.bb
+++ b/meta-python/recipes-devtools/python/python3-humanize_3.14.0.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
 
-SRC_URI[sha256sum] = "12f113f2e369dac7f35d3823f49262934f4a22a53a6d3d4c86b736f50db88c7b"
+SRC_URI[sha256sum] = "60dd8c952b1df1ad83f0903844dec50a34ba7a04eea22a6b14204ffb62dbb0a4"
 
 inherit pypi setuptools3
 
-- 
2.30.2



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

* [meta-python][PATCH 3/3] python3-bitarray: Upgrade 2.3.5 -> 2.3.6
  2022-02-10 11:34 [meta-python][PATCH 1/3] python3-imageio: Upgrade 2.14.1 -> 2.15.0 Leon Anavi
  2022-02-10 11:34 ` [meta-python][PATCH 2/3] python3-humanize: Upgrade 3.13.1 -> 3.14.0 Leon Anavi
@ 2022-02-10 11:34 ` Leon Anavi
  1 sibling, 0 replies; 3+ messages in thread
From: Leon Anavi @ 2022-02-10 11:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.3.6:

- add optional value parameter to `util.count_n()`
- determine machine endianness at build time when possible, by
  using the `PY_LITTLE_ENDIAN` macro, in order to optimize
  `shift_r8()`
- add official Python 3.11 support

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-bitarray_2.3.5.bb => python3-bitarray_2.3.6.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-bitarray_2.3.5.bb => python3-bitarray_2.3.6.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.3.5.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.3.6.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-bitarray_2.3.5.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_2.3.6.bb
index 37fcfa1fe..d4fb6ed76 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_2.3.5.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_2.3.6.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
 LICENSE = "PSF"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
 
-SRC_URI[sha256sum] = "60285184cb02fdba5e1cc8605ac84e150a50f940e9383ab43564e5258d1f47bb"
+SRC_URI[sha256sum] = "3bfdb59ded15c961e6e3d5b7f167155cda053be2475ea8017461df0b4d820b7d"
 
 inherit setuptools3 pypi
 
-- 
2.30.2



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

end of thread, other threads:[~2022-02-10 11:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-10 11:34 [meta-python][PATCH 1/3] python3-imageio: Upgrade 2.14.1 -> 2.15.0 Leon Anavi
2022-02-10 11:34 ` [meta-python][PATCH 2/3] python3-humanize: Upgrade 3.13.1 -> 3.14.0 Leon Anavi
2022-02-10 11:34 ` [meta-python][PATCH 3/3] python3-bitarray: Upgrade 2.3.5 -> 2.3.6 Leon Anavi

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.