All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-colorlog: Upgrade 5.0.1 -> 6.4.1
@ 2021-08-24  8:18 Leon Anavi
  2021-08-24  8:18 ` [meta-python][PATCH 2/5] python3-ruamel-yaml: Upgrade 0.17.11 -> 0.17.13 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-24  8:18 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 6.4.1:

- Renamed colorlog.logging to colorlog.wrappers
- Import log levels from the logging module
- Dropped support for Python 2 and Python versions below 3.5
- Added type hints and added mypy to CI
- Support 256 colour ANSI codes
- Support "light" ANSI codes
- Support the NO_COLOR environment variable, and a no_color option
- Updated various examples and documentation
- Merged TTYColoredFormatter into ColoredFormatter, and ensure no
  ANSI codes are printed when colors are disabled
- Replaced LevelFormatter with a far simpler implementation
- Fixed version_info check for the Formatter validate parameter
- Define formatMessage instead of format, so that ColoredRecord is
  used in fewer places
- Use setuptool's "normalised" format for the version number
- Add PEP 561 typing marker so mypy can find type annotations
- Renamed internal modules
- colorlog.colorlog is now colorlog.formatter
- colorlog.logging is now colorlog.wrappers
- Removed colorlog.escape_codes object so that the
  colorlog.escape_codes module can be imported and used
- Import log levels from the logging module

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

diff --git a/meta-python/recipes-devtools/python/python3-colorlog_5.0.1.bb b/meta-python/recipes-devtools/python/python3-colorlog_6.4.1.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-colorlog_5.0.1.bb
rename to meta-python/recipes-devtools/python/python3-colorlog_6.4.1.bb
index 61b8152a1e..59a0e94939 100644
--- a/meta-python/recipes-devtools/python/python3-colorlog_5.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-colorlog_6.4.1.bb
@@ -7,4 +7,4 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "colorlog"
 
-SRC_URI[sha256sum] = "f17c013a06962b02f4449ee07cfdbe6b287df29efc2c9a1515b4a376f4e588ea"
+SRC_URI[sha256sum] = "af99440154a01f27c09256760ea3477982bf782721feaa345904e806879df4d8"
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-ruamel-yaml: Upgrade 0.17.11 -> 0.17.13
  2021-08-24  8:18 [meta-python][PATCH 1/5] python3-colorlog: Upgrade 5.0.1 -> 6.4.1 Leon Anavi
@ 2021-08-24  8:18 ` Leon Anavi
  2021-08-24  8:18 ` [meta-python][PATCH 3/5] python3-simplejson: Upgrade 3.17.4 -> 3.17.5 Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-24  8:18 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.17.13:

- minor fix in attr handling
- fix issue with anchor on registered class not preserved and
  those classes using package attrs with @attr.s()

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...n3-ruamel-yaml_0.17.11.bb => python3-ruamel-yaml_0.17.13.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-ruamel-yaml_0.17.11.bb => python3-ruamel-yaml_0.17.13.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.11.bb b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.13.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.11.bb
rename to meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.13.bb
index 8423a89294..d28e8a12fe 100644
--- a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.11.bb
+++ b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.13.bb
@@ -8,7 +8,7 @@ PYPI_PACKAGE = "ruamel.yaml"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "b5e96c0a6619830a7733099f0599b56556a963c6114ef64d0ddb4673347b426f"
+SRC_URI[sha256sum] = "02f0ed93e98ea32498d25a2952635bbd9fabd553599b8ad67724b4ac88dd8f6c"
 
 RDEPENDS:${PN} += "\
     ${PYTHON_PN}-shell \
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-simplejson: Upgrade 3.17.4 -> 3.17.5
  2021-08-24  8:18 [meta-python][PATCH 1/5] python3-colorlog: Upgrade 5.0.1 -> 6.4.1 Leon Anavi
  2021-08-24  8:18 ` [meta-python][PATCH 2/5] python3-ruamel-yaml: Upgrade 0.17.11 -> 0.17.13 Leon Anavi
@ 2021-08-24  8:18 ` Leon Anavi
  2021-08-24  8:18 ` [meta-python][PATCH 4/5] python3-bitarray: Upgrade 2.3.0 -> 2.3.2 Leon Anavi
  2021-08-24  8:18 ` [meta-python][PATCH 5/5] python3-watchdog: Upgrade 2.1.3 -> 2.1.5 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-24  8:18 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.17.5:

- Fix the C extension module to harden is_namedtuple against
  looks-a-likes such as Mocks. Also prevent dict encoding from
  causing an unraised SystemError when encountering a non-Dict.
  Noticed by running user tests against a CPython interpreter
  with C asserts enabled (COPTS += -UNDEBUG).

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

diff --git a/meta-python/recipes-devtools/python/python3-simplejson_3.17.4.bb b/meta-python/recipes-devtools/python/python3-simplejson_3.17.5.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-simplejson_3.17.4.bb
rename to meta-python/recipes-devtools/python/python3-simplejson_3.17.5.bb
index e50aac67a9..7c92761c40 100644
--- a/meta-python/recipes-devtools/python/python3-simplejson_3.17.4.bb
+++ b/meta-python/recipes-devtools/python/python3-simplejson_3.17.5.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e"
 
-SRC_URI[sha256sum] = "2af85e028714c4b6cb2eb6fc03aa91f39ffd654f2eb2f6f8f860e14aeefa6be1"
+SRC_URI[sha256sum] = "91cfb43fb91ff6d1e4258be04eee84b51a4ef40a28d899679b9ea2556322fb50"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-bitarray: Upgrade 2.3.0 -> 2.3.2
  2021-08-24  8:18 [meta-python][PATCH 1/5] python3-colorlog: Upgrade 5.0.1 -> 6.4.1 Leon Anavi
  2021-08-24  8:18 ` [meta-python][PATCH 2/5] python3-ruamel-yaml: Upgrade 0.17.11 -> 0.17.13 Leon Anavi
  2021-08-24  8:18 ` [meta-python][PATCH 3/5] python3-simplejson: Upgrade 3.17.4 -> 3.17.5 Leon Anavi
@ 2021-08-24  8:18 ` Leon Anavi
  2021-08-24  8:18 ` [meta-python][PATCH 5/5] python3-watchdog: Upgrade 2.1.3 -> 2.1.5 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-24  8:18 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.3.2:

- fix slice assignment for shared buffer with offset case
- add tests (including internal debug mode tests for
  `buffers_overlap()`)

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

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.3.0.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.3.2.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-bitarray_2.3.0.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_2.3.2.bb
index b198b47004..8b473b543d 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_2.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_2.3.2.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] = "21f2e10420f9ae74d3bdfd3cb74947ddbe9fbc0b2e5662f2f039001954f1d8b6"
+SRC_URI[sha256sum] = "4bee3ba9164b66cef64f1099e9a3b88e99ddcd0c943807e99443613e184b48b4"
 
 inherit setuptools3 pypi
 
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-watchdog: Upgrade 2.1.3 -> 2.1.5
  2021-08-24  8:18 [meta-python][PATCH 1/5] python3-colorlog: Upgrade 5.0.1 -> 6.4.1 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-08-24  8:18 ` [meta-python][PATCH 4/5] python3-bitarray: Upgrade 2.3.0 -> 2.3.2 Leon Anavi
@ 2021-08-24  8:18 ` Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-24  8:18 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.1.5:

- Fix regression introduced in 2.1.4 (reverted "Allow overriding
  or adding custom event handlers to event dispatch map.
- Convert regexes of type str to list.

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

diff --git a/meta-python/recipes-devtools/python/python3-watchdog_2.1.3.bb b/meta-python/recipes-devtools/python/python3-watchdog_2.1.5.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-watchdog_2.1.3.bb
rename to meta-python/recipes-devtools/python/python3-watchdog_2.1.5.bb
index 97d46b4f18..55b966a90f 100644
--- a/meta-python/recipes-devtools/python/python3-watchdog_2.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-watchdog_2.1.5.bb
@@ -4,7 +4,7 @@ DEPENDS = "${PYTHON_PN}-argh"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRC_URI[sha256sum] = "e5236a8e8602ab6db4b873664c2d356c365ab3cac96fbdec4970ad616415dd45"
+SRC_URI[sha256sum] = "5563b005907613430ef3d4aaac9c78600dd5704e84764cb6deda4b3d72807f09"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

end of thread, other threads:[~2021-08-24  8:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-24  8:18 [meta-python][PATCH 1/5] python3-colorlog: Upgrade 5.0.1 -> 6.4.1 Leon Anavi
2021-08-24  8:18 ` [meta-python][PATCH 2/5] python3-ruamel-yaml: Upgrade 0.17.11 -> 0.17.13 Leon Anavi
2021-08-24  8:18 ` [meta-python][PATCH 3/5] python3-simplejson: Upgrade 3.17.4 -> 3.17.5 Leon Anavi
2021-08-24  8:18 ` [meta-python][PATCH 4/5] python3-bitarray: Upgrade 2.3.0 -> 2.3.2 Leon Anavi
2021-08-24  8:18 ` [meta-python][PATCH 5/5] python3-watchdog: Upgrade 2.1.3 -> 2.1.5 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.