Openembedded Core Discussions
 help / color / mirror / Atom feed
* [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5
@ 2024-08-09 12:22 Trevor Gamblin
  2024-08-09 12:22 ` [OE-core][PATCH 2/3] python3-setuptools: upgrade 71.1.0 -> 72.1.0 Trevor Gamblin
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Trevor Gamblin @ 2024-08-09 12:22 UTC (permalink / raw)
  To: openembedded-core

Changelog: https://docs.python.org/release/3.12.5/whatsnew/changelog.html

Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
---
 .../python/{python3_3.12.4.bb => python3_3.12.5.bb}             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3_3.12.4.bb => python3_3.12.5.bb} (99%)

diff --git a/meta/recipes-devtools/python/python3_3.12.4.bb b/meta/recipes-devtools/python/python3_3.12.5.bb
similarity index 99%
rename from meta/recipes-devtools/python/python3_3.12.4.bb
rename to meta/recipes-devtools/python/python3_3.12.5.bb
index 119fe10ca9..5665c90fa9 100644
--- a/meta/recipes-devtools/python/python3_3.12.4.bb
+++ b/meta/recipes-devtools/python/python3_3.12.5.bb
@@ -39,7 +39,7 @@ SRC_URI:append:class-native = " \
            file://0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch \
            "
 
-SRC_URI[sha256sum] = "f6d419a6d8743ab26700801b4908d26d97e8b986e14f95de31b32de2b0e79554"
+SRC_URI[sha256sum] = "fa8a2e12c5e620b09f53e65bcd87550d2e5a1e2e04bf8ba991dcc55113876397"
 
 # exclude pre-releases for both python 2.x and 3.x
 UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar"
-- 
2.39.2



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

* [OE-core][PATCH 2/3] python3-setuptools: upgrade 71.1.0 -> 72.1.0
  2024-08-09 12:22 [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5 Trevor Gamblin
@ 2024-08-09 12:22 ` Trevor Gamblin
  2024-08-09 12:22 ` [OE-core][PATCH 3/3] python3-hypothesis: upgrade 6.108.10 -> 6.110.1 Trevor Gamblin
  2024-08-13  9:56 ` [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5 Alexandre Belloni
  2 siblings, 0 replies; 6+ messages in thread
From: Trevor Gamblin @ 2024-08-09 12:22 UTC (permalink / raw)
  To: openembedded-core

Changelog (https://github.com/pypa/setuptools/blob/main/NEWS.rst#v7210):

Features
  - Restore the tests command and deprecate access to the module. (#4519) (#4520)

Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
---
 ...ython3-setuptools_71.1.0.bb => python3-setuptools_72.1.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-setuptools_71.1.0.bb => python3-setuptools_72.1.0.bb} (94%)

diff --git a/meta/recipes-devtools/python/python3-setuptools_71.1.0.bb b/meta/recipes-devtools/python/python3-setuptools_72.1.0.bb
similarity index 94%
rename from meta/recipes-devtools/python/python3-setuptools_71.1.0.bb
rename to meta/recipes-devtools/python/python3-setuptools_72.1.0.bb
index 9503c36bb6..945d443aff 100644
--- a/meta/recipes-devtools/python/python3-setuptools_71.1.0.bb
+++ b/meta/recipes-devtools/python/python3-setuptools_72.1.0.bb
@@ -11,7 +11,7 @@ SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-e
 SRC_URI += " \
             file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch"
 
-SRC_URI[sha256sum] = "032d42ee9fb536e33087fb66cac5f840eb9391ed05637b3f2a76a7c8fb477936"
+SRC_URI[sha256sum] = "8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec"
 
 DEPENDS += "python3"
 
-- 
2.39.2



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

* [OE-core][PATCH 3/3] python3-hypothesis: upgrade 6.108.10 -> 6.110.1
  2024-08-09 12:22 [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5 Trevor Gamblin
  2024-08-09 12:22 ` [OE-core][PATCH 2/3] python3-setuptools: upgrade 71.1.0 -> 72.1.0 Trevor Gamblin
@ 2024-08-09 12:22 ` Trevor Gamblin
  2024-08-13  9:56 ` [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5 Alexandre Belloni
  2 siblings, 0 replies; 6+ messages in thread
From: Trevor Gamblin @ 2024-08-09 12:22 UTC (permalink / raw)
  To: openembedded-core

Changelog (https://hypothesis.readthedocs.io/en/latest/changes.html):

6.110.1 - 2024-08-08
  - Add better error message for ~python:typing.TypeIs types in from_type().

6.110.0 - 2024-08-07
  - Support LiteralString in from_type().

6.109.1 - 2024-08-07
  - This patch makes progress towards adding type hints to our internal conjecture engine (issue #3074).

6.109.0 - 2024-08-07
  - This release allows using Annotated and ReadOnly types for TypedDict value types with from_type().

Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
---
 ...on3-hypothesis_6.108.10.bb => python3-hypothesis_6.110.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-hypothesis_6.108.10.bb => python3-hypothesis_6.110.1.bb} (91%)

diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.108.10.bb b/meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-hypothesis_6.108.10.bb
rename to meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb
index ebb82dfd79..29fe7e18a2 100644
--- a/meta/recipes-devtools/python/python3-hypothesis_6.108.10.bb
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.110.1.bb
@@ -13,7 +13,7 @@ SRC_URI += " \
     file://test_rle.py \
     "
 
-SRC_URI[sha256sum] = "8d8b3a57f27bd964b04e58c5731ab9862134fbb5511958c814aaca3120286f28"
+SRC_URI[sha256sum] = "a138bfaea11aba6daadf8effd9065251a6fec1549f25b7d72ac9881a413f76b0"
 
 RDEPENDS:${PN} += " \
     python3-attrs \
-- 
2.39.2



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

* Re: [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5
  2024-08-09 12:22 [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5 Trevor Gamblin
  2024-08-09 12:22 ` [OE-core][PATCH 2/3] python3-setuptools: upgrade 71.1.0 -> 72.1.0 Trevor Gamblin
  2024-08-09 12:22 ` [OE-core][PATCH 3/3] python3-hypothesis: upgrade 6.108.10 -> 6.110.1 Trevor Gamblin
@ 2024-08-13  9:56 ` Alexandre Belloni
  2024-08-13 14:27   ` Trevor Gamblin
       [not found]   ` <17EB4FFEDB5B735B.10903@lists.openembedded.org>
  2 siblings, 2 replies; 6+ messages in thread
From: Alexandre Belloni @ 2024-08-13  9:56 UTC (permalink / raw)
  To: Trevor Gamblin; +Cc: openembedded-core

Hello Trevor,

This causes a new ptest failure:

https://autobuilder.yoctoproject.org/typhoon/#/builders/81/builds/6894/steps/12/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/81/builds/6898/steps/12/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/82/builds/6725/steps/13/logs/stdio

https://autobuilder.yocto.io/pub/non-release/20240812-77/testresults/qemux86-64-ptest/python3.log

FAIL: test_write_read_limited_history (test.test_readline.TestReadline.test_write_read_limited_history)

======================================================================
ERROR: test_write_read_limited_history (test.test_readline.TestHistoryManipulation.test_write_read_limited_history)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.12/test/test_readline.py", line 153, in test_write_read_limited_history
    readline.read_history_file(TESTFN)
OSError: [Errno 22] Invalid argument

======================================================================
ERROR: test_write_read_limited_history (test.test_readline.TestReadline.test_write_read_limited_history)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.12/test/test_readline.py", line 362, in test_write_read_limited_history
    readline.read_history_file(TESTFN)
OSError: [Errno 22] Invalid argument

----------------------------------------------------------------------
Ran 11 tests in 0.266s

FAILED (errors=2, skipped=3)
test test_readline failed


On 09/08/2024 08:22:15-0400, Trevor Gamblin wrote:
> Changelog: https://docs.python.org/release/3.12.5/whatsnew/changelog.html
> 
> Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
> ---
>  .../python/{python3_3.12.4.bb => python3_3.12.5.bb}             | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename meta/recipes-devtools/python/{python3_3.12.4.bb => python3_3.12.5.bb} (99%)
> 
> diff --git a/meta/recipes-devtools/python/python3_3.12.4.bb b/meta/recipes-devtools/python/python3_3.12.5.bb
> similarity index 99%
> rename from meta/recipes-devtools/python/python3_3.12.4.bb
> rename to meta/recipes-devtools/python/python3_3.12.5.bb
> index 119fe10ca9..5665c90fa9 100644
> --- a/meta/recipes-devtools/python/python3_3.12.4.bb
> +++ b/meta/recipes-devtools/python/python3_3.12.5.bb
> @@ -39,7 +39,7 @@ SRC_URI:append:class-native = " \
>             file://0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch \
>             "
>  
> -SRC_URI[sha256sum] = "f6d419a6d8743ab26700801b4908d26d97e8b986e14f95de31b32de2b0e79554"
> +SRC_URI[sha256sum] = "fa8a2e12c5e620b09f53e65bcd87550d2e5a1e2e04bf8ba991dcc55113876397"
>  
>  # exclude pre-releases for both python 2.x and 3.x
>  UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar"
> -- 
> 2.39.2
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#203168): https://lists.openembedded.org/g/openembedded-core/message/203168
> Mute This Topic: https://lists.openembedded.org/mt/107806767/3617179
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

* Re: [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5
  2024-08-13  9:56 ` [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5 Alexandre Belloni
@ 2024-08-13 14:27   ` Trevor Gamblin
       [not found]   ` <17EB4FFEDB5B735B.10903@lists.openembedded.org>
  1 sibling, 0 replies; 6+ messages in thread
From: Trevor Gamblin @ 2024-08-13 14:27 UTC (permalink / raw)
  To: Alexandre Belloni; +Cc: openembedded-core


On 2024-08-13 5:56 a.m., Alexandre Belloni wrote:
> Hello Trevor,
>
> This causes a new ptest failure:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/81/builds/6894/steps/12/logs/stdio
> https://autobuilder.yoctoproject.org/typhoon/#/builders/81/builds/6898/steps/12/logs/stdio
> https://autobuilder.yoctoproject.org/typhoon/#/builders/82/builds/6725/steps/13/logs/stdio
>
> https://autobuilder.yocto.io/pub/non-release/20240812-77/testresults/qemux86-64-ptest/python3.log
>
> FAIL: test_write_read_limited_history (test.test_readline.TestReadline.test_write_read_limited_history)
Looking into it. The test code seems a little strange to me. Might 
submit a patch to disable the test case shortly...
>
> ======================================================================
> ERROR: test_write_read_limited_history (test.test_readline.TestHistoryManipulation.test_write_read_limited_history)
> ----------------------------------------------------------------------
> Traceback (most recent call last):
>    File "/usr/lib/python3.12/test/test_readline.py", line 153, in test_write_read_limited_history
>      readline.read_history_file(TESTFN)
> OSError: [Errno 22] Invalid argument
>
> ======================================================================
> ERROR: test_write_read_limited_history (test.test_readline.TestReadline.test_write_read_limited_history)
> ----------------------------------------------------------------------
> Traceback (most recent call last):
>    File "/usr/lib/python3.12/test/test_readline.py", line 362, in test_write_read_limited_history
>      readline.read_history_file(TESTFN)
> OSError: [Errno 22] Invalid argument
>
> ----------------------------------------------------------------------
> Ran 11 tests in 0.266s
>
> FAILED (errors=2, skipped=3)
> test test_readline failed
>
>
> On 09/08/2024 08:22:15-0400, Trevor Gamblin wrote:
>> Changelog: https://docs.python.org/release/3.12.5/whatsnew/changelog.html
>>
>> Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
>> ---
>>   .../python/{python3_3.12.4.bb => python3_3.12.5.bb}             | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>   rename meta/recipes-devtools/python/{python3_3.12.4.bb => python3_3.12.5.bb} (99%)
>>
>> diff --git a/meta/recipes-devtools/python/python3_3.12.4.bb b/meta/recipes-devtools/python/python3_3.12.5.bb
>> similarity index 99%
>> rename from meta/recipes-devtools/python/python3_3.12.4.bb
>> rename to meta/recipes-devtools/python/python3_3.12.5.bb
>> index 119fe10ca9..5665c90fa9 100644
>> --- a/meta/recipes-devtools/python/python3_3.12.4.bb
>> +++ b/meta/recipes-devtools/python/python3_3.12.5.bb
>> @@ -39,7 +39,7 @@ SRC_URI:append:class-native = " \
>>              file://0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch \
>>              "
>>   
>> -SRC_URI[sha256sum] = "f6d419a6d8743ab26700801b4908d26d97e8b986e14f95de31b32de2b0e79554"
>> +SRC_URI[sha256sum] = "fa8a2e12c5e620b09f53e65bcd87550d2e5a1e2e04bf8ba991dcc55113876397"
>>   
>>   # exclude pre-releases for both python 2.x and 3.x
>>   UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar"
>> -- 
>> 2.39.2
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#203168): https://lists.openembedded.org/g/openembedded-core/message/203168
>> Mute This Topic: https://lists.openembedded.org/mt/107806767/3617179
>> Group Owner: openembedded-core+owner@lists.openembedded.org
>> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>
>


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

* Re: [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5
       [not found]   ` <17EB4FFEDB5B735B.10903@lists.openembedded.org>
@ 2024-08-13 15:31     ` Trevor Gamblin
  0 siblings, 0 replies; 6+ messages in thread
From: Trevor Gamblin @ 2024-08-13 15:31 UTC (permalink / raw)
  To: Alexandre Belloni; +Cc: openembedded-core


On 2024-08-13 10:27 a.m., Trevor Gamblin via lists.openembedded.org wrote:
>
> On 2024-08-13 5:56 a.m., Alexandre Belloni wrote:
>> Hello Trevor,
>>
>> This causes a new ptest failure:
>>
>> https://autobuilder.yoctoproject.org/typhoon/#/builders/81/builds/6894/steps/12/logs/stdio 
>>
>> https://autobuilder.yoctoproject.org/typhoon/#/builders/81/builds/6898/steps/12/logs/stdio 
>>
>> https://autobuilder.yoctoproject.org/typhoon/#/builders/82/builds/6725/steps/13/logs/stdio 
>>
>>
>> https://autobuilder.yocto.io/pub/non-release/20240812-77/testresults/qemux86-64-ptest/python3.log 
>>
>>
>> FAIL: test_write_read_limited_history 
>> (test.test_readline.TestReadline.test_write_read_limited_history)
> Looking into it. The test code seems a little strange to me. Might 
> submit a patch to disable the test case shortly...
Sent a patch to skip it in ptests for now.
>>
>> ======================================================================
>> ERROR: test_write_read_limited_history 
>> (test.test_readline.TestHistoryManipulation.test_write_read_limited_history)
>> ----------------------------------------------------------------------
>> Traceback (most recent call last):
>>    File "/usr/lib/python3.12/test/test_readline.py", line 153, in 
>> test_write_read_limited_history
>>      readline.read_history_file(TESTFN)
>> OSError: [Errno 22] Invalid argument
>>
>> ======================================================================
>> ERROR: test_write_read_limited_history 
>> (test.test_readline.TestReadline.test_write_read_limited_history)
>> ----------------------------------------------------------------------
>> Traceback (most recent call last):
>>    File "/usr/lib/python3.12/test/test_readline.py", line 362, in 
>> test_write_read_limited_history
>>      readline.read_history_file(TESTFN)
>> OSError: [Errno 22] Invalid argument
>>
>> ----------------------------------------------------------------------
>> Ran 11 tests in 0.266s
>>
>> FAILED (errors=2, skipped=3)
>> test test_readline failed
>>
>>
>> On 09/08/2024 08:22:15-0400, Trevor Gamblin wrote:
>>> Changelog: 
>>> https://docs.python.org/release/3.12.5/whatsnew/changelog.html
>>>
>>> Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
>>> ---
>>>   .../python/{python3_3.12.4.bb => python3_3.12.5.bb}             | 
>>> 2 +-
>>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>>   rename meta/recipes-devtools/python/{python3_3.12.4.bb => 
>>> python3_3.12.5.bb} (99%)
>>>
>>> diff --git a/meta/recipes-devtools/python/python3_3.12.4.bb 
>>> b/meta/recipes-devtools/python/python3_3.12.5.bb
>>> similarity index 99%
>>> rename from meta/recipes-devtools/python/python3_3.12.4.bb
>>> rename to meta/recipes-devtools/python/python3_3.12.5.bb
>>> index 119fe10ca9..5665c90fa9 100644
>>> --- a/meta/recipes-devtools/python/python3_3.12.4.bb
>>> +++ b/meta/recipes-devtools/python/python3_3.12.5.bb
>>> @@ -39,7 +39,7 @@ SRC_URI:append:class-native = " \
>>> file://0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch 
>>> \
>>>              "
>>>   -SRC_URI[sha256sum] = 
>>> "f6d419a6d8743ab26700801b4908d26d97e8b986e14f95de31b32de2b0e79554"
>>> +SRC_URI[sha256sum] = 
>>> "fa8a2e12c5e620b09f53e65bcd87550d2e5a1e2e04bf8ba991dcc55113876397"
>>>     # exclude pre-releases for both python 2.x and 3.x
>>>   UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar"
>>> -- 
>>> 2.39.2
>>>
>>>
>>>
>>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#203280): https://lists.openembedded.org/g/openembedded-core/message/203280
> Mute This Topic: https://lists.openembedded.org/mt/107806767/7611679
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [tgamblin@baylibre.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

end of thread, other threads:[~2024-08-13 15:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-09 12:22 [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5 Trevor Gamblin
2024-08-09 12:22 ` [OE-core][PATCH 2/3] python3-setuptools: upgrade 71.1.0 -> 72.1.0 Trevor Gamblin
2024-08-09 12:22 ` [OE-core][PATCH 3/3] python3-hypothesis: upgrade 6.108.10 -> 6.110.1 Trevor Gamblin
2024-08-13  9:56 ` [OE-core][PATCH 1/3] python3: upgrade 3.12.4 -> 3.12.5 Alexandre Belloni
2024-08-13 14:27   ` Trevor Gamblin
     [not found]   ` <17EB4FFEDB5B735B.10903@lists.openembedded.org>
2024-08-13 15:31     ` Trevor Gamblin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox