All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7
@ 2021-02-22 17:50 Leon Anavi
  2021-02-22 17:50 ` [meta-python][PATCH 2/5] python3-tabulate: Upgrade 0.8.7 -> 0.8.9 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Leon Anavi @ 2021-02-22 17:50 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.8.7:

- State configuration dictionaries passed to HierarchicalMachine
  can also use states as a keyword to define substates. If
  children and states are present, only children will be
  considered.
- HierarchicalMachine with custom separator now adds is_state
  partials for nested states (e.g. is_C.s3.a()) to models.
- Use model_attribute consistently in AsyncMachine
- Testing now treats most warnings as errors
- As a consequence, pygraphviz.Agraph in diagrams_pygraphviz are
  now copied by transitions since AGraph.copy as of version 1.6
  does not close temporary files appropriately
- HierarchicalMachine now checks whether state_cls, event_cls and
  transition_cls have been subclassed from nested base classes
  (e.g. NestedState) to prevent hard to debug inheritance errors

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

diff --git a/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb b/meta-python/recipes-devtools/python/python3-transitions_0.8.7.bb
similarity index 73%
rename from meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
rename to meta-python/recipes-devtools/python/python3-transitions_0.8.7.bb
index 701c82cda8..04a033742a 100644
--- a/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
+++ b/meta-python/recipes-devtools/python/python3-transitions_0.8.7.bb
@@ -4,6 +4,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=baac7be1f4c17620df74188e23da6d47"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "032e10113139852ffb3ecfa4c2a5138f87441d85c3d6ad9122bb4b0978180a8d"
+SRC_URI[sha256sum] = "8c60ec0828cd037820726283cad5d4d77a5e31514e058b51250420e9873e9bc7"
 
 RDEPENDS_${PN} += "python3-six"
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-tabulate: Upgrade 0.8.7 -> 0.8.9
  2021-02-22 17:50 [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7 Leon Anavi
@ 2021-02-22 17:50 ` Leon Anavi
  2021-02-24 14:40   ` [oe] " Trevor Gamblin
  2021-02-22 17:50 ` [meta-python][PATCH 3/5] python3-pyperclip: Upgrade 1.8.1 -> 1.8.2 Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-22 17:50 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.8.9:

- Bug fix: Revert support of decimal separators
- Python 3.9 support, 3.10 ready
- New formats: unsafehtml, latex_longtable, fancy_outline
- Support lists of UserDicts as input
- Support hyperlinks in terminal output
- Improve testing on systems with proxies
- Migrate to pytest
- Various bug fixes and improvements

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-tabulate_0.8.7.bb => python3-tabulate_0.8.9.bb}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-tabulate_0.8.7.bb => python3-tabulate_0.8.9.bb} (59%)

diff --git a/meta-python/recipes-devtools/python/python3-tabulate_0.8.7.bb b/meta-python/recipes-devtools/python/python3-tabulate_0.8.9.bb
similarity index 59%
rename from meta-python/recipes-devtools/python/python3-tabulate_0.8.7.bb
rename to meta-python/recipes-devtools/python/python3-tabulate_0.8.9.bb
index def35ff441..19261c3d1d 100644
--- a/meta-python/recipes-devtools/python/python3-tabulate_0.8.7.bb
+++ b/meta-python/recipes-devtools/python/python3-tabulate_0.8.9.bb
@@ -3,7 +3,6 @@ HOMEPAGE = "https://github.com/astanin/python-tabulate"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=fad5a39bdfe452b13775adda41023ba7"
 
-SRC_URI[md5sum] = "a766c6eecfe3765821909c4ddf082b3b"
-SRC_URI[sha256sum] = "db2723a20d04bcda8522165c73eea7c300eda74e0ce852d9022e0159d7895007"
+SRC_URI[sha256sum] = "eb1d13f25760052e8931f2ef80aaf6045a6cceb47514db8beab24cded16f13a7"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-pyperclip: Upgrade 1.8.1 -> 1.8.2
  2021-02-22 17:50 [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7 Leon Anavi
  2021-02-22 17:50 ` [meta-python][PATCH 2/5] python3-tabulate: Upgrade 0.8.7 -> 0.8.9 Leon Anavi
@ 2021-02-22 17:50 ` Leon Anavi
  2021-02-24 14:40   ` [oe] " Trevor Gamblin
  2021-02-22 17:50 ` [meta-python][PATCH 4/5] python3-elementpath: Upgrade 2.1.3 -> 2.1.4 Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-22 17:50 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.8.2:

- Better wayland session detection

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-pyperclip_1.8.1.bb => python3-pyperclip_1.8.2.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pyperclip_1.8.1.bb => python3-pyperclip_1.8.2.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-pyperclip_1.8.1.bb b/meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-pyperclip_1.8.1.bb
rename to meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb
index 211580b37c..142d075493 100644
--- a/meta-python/recipes-devtools/python/python3-pyperclip_1.8.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb
@@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/asweigart/pyperclip"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=d7dd4b0d1f7153322a546e89b5a0a632"
 
-SRC_URI[md5sum] = "0ac879899da5c2af755a834245ca6a0f"
-SRC_URI[sha256sum] = "9abef1e79ce635eb62309ecae02dfb5a3eb952fa7d6dce09c1aef063f81424d3"
+SRC_URI[sha256sum] = "105254a8b04934f0bc84e9c24eb360a591aaf6535c9def5f29d92af107a9bf57"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-elementpath: Upgrade 2.1.3 -> 2.1.4
  2021-02-22 17:50 [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7 Leon Anavi
  2021-02-22 17:50 ` [meta-python][PATCH 2/5] python3-tabulate: Upgrade 0.8.7 -> 0.8.9 Leon Anavi
  2021-02-22 17:50 ` [meta-python][PATCH 3/5] python3-pyperclip: Upgrade 1.8.1 -> 1.8.2 Leon Anavi
@ 2021-02-22 17:50 ` Leon Anavi
  2021-02-24 14:40   ` [oe] " Trevor Gamblin
  2021-02-22 17:50 ` [meta-python][PATCH 5/5] python3-mpmath: Upgrade 1.1.0 -> 1.2.1 Leon Anavi
  2021-02-24 14:40 ` [oe] [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-22 17:50 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.1.4:

- Add tests and apply small fixes to TDOP parser
- Fix wildcard selection of attributes

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

diff --git a/meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb b/meta-python/recipes-devtools/python/python3-elementpath_2.1.4.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
rename to meta-python/recipes-devtools/python/python3-elementpath_2.1.4.bb
index 2cba4fb5c8..10aa17d381 100644
--- a/meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-elementpath_2.1.4.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/elementpath"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5dbb7fb7d72da3921202dd7b995d3ecf"
 
-SRC_URI[sha256sum] = "b729d9376cc0f76479c9b0cef30cc0d3c9082ccb4507caa0da1a5e4964926960"
+SRC_URI[sha256sum] = "326643aca7beff0864d022cd591736b8550a70fccafd67a89198166baed1c2c4"
 
 PYPI_PACKAGE = "elementpath"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-mpmath: Upgrade 1.1.0 -> 1.2.1
  2021-02-22 17:50 [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-02-22 17:50 ` [meta-python][PATCH 4/5] python3-elementpath: Upgrade 2.1.3 -> 2.1.4 Leon Anavi
@ 2021-02-22 17:50 ` Leon Anavi
  2021-02-24 14:40   ` [oe] " Trevor Gamblin
  2021-02-24 14:40 ` [oe] [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2021-02-22 17:50 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.2.1:

- Support @ operator for matrix multiplication
- Add eta() implementing the Dedekind eta function
- Optimized the python_trailing function
- Implement unary plus for matrices
- Improved calculation of gram_index
- Fix a possible division by zero in shanks()
- Fixed indexing errors in deHoog, Knight & Stokes inverse laplace
  transform algorithm
- Corrected branch cuts of the elliprj() function in some cases
- Fix initialization of iv.matrix from non-interval matrix
- Preserve function signatures in PrecisionManager
- Implemented float and complex conversions for ivmpf
- Fixed issue with scalar-matrix multiplication for interval
  matrices
- Fix estimation of quadrature error with multiple subintervals
- Fixed a problem with the defun decorators
- Fix eigenvalue sorting by absolute value

License-Update: Alter the last clause to ensure that Github
recognizes the LICENSE as BSD

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-mpmath_1.1.0.bb => python3-mpmath_1.2.1.bb}    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-mpmath_1.1.0.bb => python3-mpmath_1.2.1.bb} (63%)

diff --git a/meta-python/recipes-devtools/python/python3-mpmath_1.1.0.bb b/meta-python/recipes-devtools/python/python3-mpmath_1.2.1.bb
similarity index 63%
rename from meta-python/recipes-devtools/python/python3-mpmath_1.1.0.bb
rename to meta-python/recipes-devtools/python/python3-mpmath_1.2.1.bb
index 7879a85cdd..51a7c05847 100644
--- a/meta-python/recipes-devtools/python/python3-mpmath_1.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-mpmath_1.2.1.bb
@@ -4,13 +4,13 @@
 SUMMARY = "Python library for arbitrary-precision floating-point arithmetic"
 HOMEPAGE = "https://pypi.org/project/mpmath/"
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=efe9feb00df0b763941f2b1bbac7c402"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=71970bd3749eebe1bfef9f1efff5b37a"
 
-SRC_URI[md5sum] = "acb1cdddf38e16084628065b174ddbfe"
-SRC_URI[sha256sum] = "fc17abe05fbab3382b61a123c398508183406fa132e0223874578e20946499f6"
+SRC_URI[sha256sum] = "79ffb45cf9f4b101a807595bcb3e72e0396202e0b1d25d689134b48c4216a81a"
 
 inherit pypi setuptools3
 
+DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 RDEPENDS_${PN} += "python3-image"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7
  2021-02-22 17:50 [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7 Leon Anavi
                   ` (3 preceding siblings ...)
  2021-02-22 17:50 ` [meta-python][PATCH 5/5] python3-mpmath: Upgrade 1.1.0 -> 1.2.1 Leon Anavi
@ 2021-02-24 14:40 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-24 14:40 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2246 bytes --]


On 2021-02-22 12:50 p.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 0.8.7:
>
> - State configuration dictionaries passed to HierarchicalMachine
>    can also use states as a keyword to define substates. If
>    children and states are present, only children will be
>    considered.
> - HierarchicalMachine with custom separator now adds is_state
>    partials for nested states (e.g. is_C.s3.a()) to models.
> - Use model_attribute consistently in AsyncMachine
> - Testing now treats most warnings as errors
> - As a consequence, pygraphviz.Agraph in diagrams_pygraphviz are
>    now copied by transitions since AGraph.copy as of version 1.6
>    does not close temporary files appropriately
> - HierarchicalMachine now checks whether state_cls, event_cls and
>    transition_cls have been subclassed from nested base classes
>    (e.g. NestedState) to prevent hard to debug inheritance errors
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython3-transitions_0.8.6.bb => python3-transitions_0.8.7.bb} | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-transitions_0.8.6.bb => python3-transitions_0.8.7.bb} (73%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb b/meta-python/recipes-devtools/python/python3-transitions_0.8.7.bb
> similarity index 73%
> rename from meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
> rename to meta-python/recipes-devtools/python/python3-transitions_0.8.7.bb
> index 701c82cda8..04a033742a 100644
> --- a/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
> +++ b/meta-python/recipes-devtools/python/python3-transitions_0.8.7.bb
> @@ -4,6 +4,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=baac7be1f4c17620df74188e23da6d47"
>
>   inherit pypi setuptools3
>
> -SRC_URI[sha256sum] = "032e10113139852ffb3ecfa4c2a5138f87441d85c3d6ad9122bb4b0978180a8d"
> +SRC_URI[sha256sum] = "8c60ec0828cd037820726283cad5d4d77a5e31514e058b51250420e9873e9bc7"
>
>   RDEPENDS_${PN} += "python3-six"
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 3096 bytes --]

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

* Re: [oe] [meta-python][PATCH 2/5] python3-tabulate: Upgrade 0.8.7 -> 0.8.9
  2021-02-22 17:50 ` [meta-python][PATCH 2/5] python3-tabulate: Upgrade 0.8.7 -> 0.8.9 Leon Anavi
@ 2021-02-24 14:40   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-24 14:40 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1830 bytes --]


On 2021-02-22 12:50 p.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 0.8.9:
>
> - Bug fix: Revert support of decimal separators
> - Python 3.9 support, 3.10 ready
> - New formats: unsafehtml, latex_longtable, fancy_outline
> - Support lists of UserDicts as input
> - Support hyperlinks in terminal output
> - Improve testing on systems with proxies
> - Migrate to pytest
> - Various bug fixes and improvements
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-tabulate_0.8.7.bb => python3-tabulate_0.8.9.bb}   | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-tabulate_0.8.7.bb => python3-tabulate_0.8.9.bb} (59%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-tabulate_0.8.7.bb b/meta-python/recipes-devtools/python/python3-tabulate_0.8.9.bb
> similarity index 59%
> rename from meta-python/recipes-devtools/python/python3-tabulate_0.8.7.bb
> rename to meta-python/recipes-devtools/python/python3-tabulate_0.8.9.bb
> index def35ff441..19261c3d1d 100644
> --- a/meta-python/recipes-devtools/python/python3-tabulate_0.8.7.bb
> +++ b/meta-python/recipes-devtools/python/python3-tabulate_0.8.9.bb
> @@ -3,7 +3,6 @@ HOMEPAGE = "https://github.com/astanin/python-tabulate"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=fad5a39bdfe452b13775adda41023ba7"
>
> -SRC_URI[md5sum] = "a766c6eecfe3765821909c4ddf082b3b"
> -SRC_URI[sha256sum] = "db2723a20d04bcda8522165c73eea7c300eda74e0ce852d9022e0159d7895007"
> +SRC_URI[sha256sum] = "eb1d13f25760052e8931f2ef80aaf6045a6cceb47514db8beab24cded16f13a7"
>
>   inherit pypi setuptools3
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2803 bytes --]

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

* Re: [oe] [meta-python][PATCH 3/5] python3-pyperclip: Upgrade 1.8.1 -> 1.8.2
  2021-02-22 17:50 ` [meta-python][PATCH 3/5] python3-pyperclip: Upgrade 1.8.1 -> 1.8.2 Leon Anavi
@ 2021-02-24 14:40   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-24 14:40 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1558 bytes --]


On 2021-02-22 12:50 p.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.8.2:
>
> - Better wayland session detection
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pyperclip_1.8.1.bb => python3-pyperclip_1.8.2.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pyperclip_1.8.1.bb => python3-pyperclip_1.8.2.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pyperclip_1.8.1.bb b/meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-pyperclip_1.8.1.bb
> rename to meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb
> index 211580b37c..142d075493 100644
> --- a/meta-python/recipes-devtools/python/python3-pyperclip_1.8.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb
> @@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/asweigart/pyperclip"
>   LICENSE = "BSD"
>   LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=d7dd4b0d1f7153322a546e89b5a0a632"
>
> -SRC_URI[md5sum] = "0ac879899da5c2af755a834245ca6a0f"
> -SRC_URI[sha256sum] = "9abef1e79ce635eb62309ecae02dfb5a3eb952fa7d6dce09c1aef063f81424d3"
> +SRC_URI[sha256sum] = "105254a8b04934f0bc84e9c24eb360a591aaf6535c9def5f29d92af107a9bf57"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2563 bytes --]

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

* Re: [oe] [meta-python][PATCH 4/5] python3-elementpath: Upgrade 2.1.3 -> 2.1.4
  2021-02-22 17:50 ` [meta-python][PATCH 4/5] python3-elementpath: Upgrade 2.1.3 -> 2.1.4 Leon Anavi
@ 2021-02-24 14:40   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-24 14:40 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1584 bytes --]


On 2021-02-22 12:50 p.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 2.1.4:
>
> - Add tests and apply small fixes to TDOP parser
> - Fix wildcard selection of attributes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython3-elementpath_2.1.3.bb => python3-elementpath_2.1.4.bb} | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-elementpath_2.1.3.bb => python3-elementpath_2.1.4.bb} (82%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb b/meta-python/recipes-devtools/python/python3-elementpath_2.1.4.bb
> similarity index 82%
> rename from meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
> rename to meta-python/recipes-devtools/python/python3-elementpath_2.1.4.bb
> index 2cba4fb5c8..10aa17d381 100644
> --- a/meta-python/recipes-devtools/python/python3-elementpath_2.1.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-elementpath_2.1.4.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/elementpath"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=5dbb7fb7d72da3921202dd7b995d3ecf"
>
> -SRC_URI[sha256sum] = "b729d9376cc0f76479c9b0cef30cc0d3c9082ccb4507caa0da1a5e4964926960"
> +SRC_URI[sha256sum] = "326643aca7beff0864d022cd591736b8550a70fccafd67a89198166baed1c2c4"
>
>   PYPI_PACKAGE = "elementpath"
>   inherit pypi setuptools3
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2568 bytes --]

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

* Re: [oe] [meta-python][PATCH 5/5] python3-mpmath: Upgrade 1.1.0 -> 1.2.1
  2021-02-22 17:50 ` [meta-python][PATCH 5/5] python3-mpmath: Upgrade 1.1.0 -> 1.2.1 Leon Anavi
@ 2021-02-24 14:40   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2021-02-24 14:40 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2717 bytes --]


On 2021-02-22 12:50 p.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.2.1:
>
> - Support @ operator for matrix multiplication
> - Add eta() implementing the Dedekind eta function
> - Optimized the python_trailing function
> - Implement unary plus for matrices
> - Improved calculation of gram_index
> - Fix a possible division by zero in shanks()
> - Fixed indexing errors in deHoog, Knight & Stokes inverse laplace
>    transform algorithm
> - Corrected branch cuts of the elliprj() function in some cases
> - Fix initialization of iv.matrix from non-interval matrix
> - Preserve function signatures in PrecisionManager
> - Implemented float and complex conversions for ivmpf
> - Fixed issue with scalar-matrix multiplication for interval
>    matrices
> - Fix estimation of quadrature error with multiple subintervals
> - Fixed a problem with the defun decorators
> - Fix eigenvalue sorting by absolute value
>
> License-Update: Alter the last clause to ensure that Github
> recognizes the LICENSE as BSD
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-mpmath_1.1.0.bb => python3-mpmath_1.2.1.bb}    | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-mpmath_1.1.0.bb => python3-mpmath_1.2.1.bb} (63%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-mpmath_1.1.0.bb b/meta-python/recipes-devtools/python/python3-mpmath_1.2.1.bb
> similarity index 63%
> rename from meta-python/recipes-devtools/python/python3-mpmath_1.1.0.bb
> rename to meta-python/recipes-devtools/python/python3-mpmath_1.2.1.bb
> index 7879a85cdd..51a7c05847 100644
> --- a/meta-python/recipes-devtools/python/python3-mpmath_1.1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-mpmath_1.2.1.bb
> @@ -4,13 +4,13 @@
>   SUMMARY = "Python library for arbitrary-precision floating-point arithmetic"
>   HOMEPAGE = "https://pypi.org/project/mpmath/"
>   LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=efe9feb00df0b763941f2b1bbac7c402"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=71970bd3749eebe1bfef9f1efff5b37a"
>
> -SRC_URI[md5sum] = "acb1cdddf38e16084628065b174ddbfe"
> -SRC_URI[sha256sum] = "fc17abe05fbab3382b61a123c398508183406fa132e0223874578e20946499f6"
> +SRC_URI[sha256sum] = "79ffb45cf9f4b101a807595bcb3e72e0396202e0b1d25d689134b48c4216a81a"
>
>   inherit pypi setuptools3
>
> +DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
>   RDEPENDS_${PN} += "python3-image"
>
>   BBCLASSEXTEND = "native nativesdk"
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 3788 bytes --]

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

end of thread, other threads:[~2021-02-24 14:41 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-22 17:50 [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7 Leon Anavi
2021-02-22 17:50 ` [meta-python][PATCH 2/5] python3-tabulate: Upgrade 0.8.7 -> 0.8.9 Leon Anavi
2021-02-24 14:40   ` [oe] " Trevor Gamblin
2021-02-22 17:50 ` [meta-python][PATCH 3/5] python3-pyperclip: Upgrade 1.8.1 -> 1.8.2 Leon Anavi
2021-02-24 14:40   ` [oe] " Trevor Gamblin
2021-02-22 17:50 ` [meta-python][PATCH 4/5] python3-elementpath: Upgrade 2.1.3 -> 2.1.4 Leon Anavi
2021-02-24 14:40   ` [oe] " Trevor Gamblin
2021-02-22 17:50 ` [meta-python][PATCH 5/5] python3-mpmath: Upgrade 1.1.0 -> 1.2.1 Leon Anavi
2021-02-24 14:40   ` [oe] " Trevor Gamblin
2021-02-24 14:40 ` [oe] [meta-python][PATCH 1/5] python3-transitions: Upgrade 0.8.6 -> 0.8.7 Trevor Gamblin

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.