Re: [pylons-discuss] Python 3.13 and Pyramid

2024-10-23 Thread Delta Regeer
https://pypi.org/project/WebOb/1.8.9/

> On Oct 23, 2024, at 15:25, Delta Regeer  wrote:
> 
> I’ll try and get to this tonight.
> 
>> On Oct 22, 2024, at 15:49, Theron Luhn  wrote:
>> 
>> I’ve opened a PR to fix the 1.8 branch, so hopefully we can get a release 
>> soon.  https://github.com/Pylons/webob/pull/469
>> 
>> In the meantime, workaround is to install the `legacy-cgi` package.
>> 
>> — Theron
>> 
>> 
>> 
>>> On Oct 22, 2024, at 2:45 PM, Laurent Daverio  wrote:
>>> 
>>> Hello List,
>>> 
>>> I'm trying Python 3.13 for the first time today (better late than never), 
>>> and my CI tests seem to indicate that Pyramid might have problems with 
>>> Python 3.13, because Pyramid requires WebOb, which requires cgi, and cgi 
>>> seems to have been removed from the standard library in 3.13. From the 
>>> Github issues I see there might be other problems, but I was wondering what 
>>> the roadmap was :)
>>> 
>>> Thanks in advance,
>>> Laurent.
>>> 
>>>  
>>> 
>>> -- 
>>> You received this message because you are subscribed to the Google Groups 
>>> "pylons-discuss" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>> email to [email protected].
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/pylons-discuss/CAB7cU6wABSop5B7aHnaJCnL1vMQaKEfo%2B3SBrBNtSfFCF0267w%40mail.gmail.com.
>> 
>> 
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "pylons-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected].
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/pylons-discuss/EC257B24-A634-4EEC-9591-E7EFDFEDD036%40luhn.com.
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "pylons-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected].
> To view this discussion visit 
> https://groups.google.com/d/msgid/pylons-discuss/ECCD8423-3AD8-4089-92DB-599379505082%400x58.com.

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion visit 
https://groups.google.com/d/msgid/pylons-discuss/A7CE9F26-5802-4EFC-BAD3-0569E2AF11DD%400x58.com.


Re: [pylons-discuss] Python 3.13 and Pyramid

2024-10-23 Thread Delta Regeer
I’ll try and get to this tonight.

> On Oct 22, 2024, at 15:49, Theron Luhn  wrote:
> 
> I’ve opened a PR to fix the 1.8 branch, so hopefully we can get a release 
> soon.  https://github.com/Pylons/webob/pull/469
> 
> In the meantime, workaround is to install the `legacy-cgi` package.
> 
> — Theron
> 
> 
> 
>> On Oct 22, 2024, at 2:45 PM, Laurent Daverio  wrote:
>> 
>> Hello List,
>> 
>> I'm trying Python 3.13 for the first time today (better late than never), 
>> and my CI tests seem to indicate that Pyramid might have problems with 
>> Python 3.13, because Pyramid requires WebOb, which requires cgi, and cgi 
>> seems to have been removed from the standard library in 3.13. From the 
>> Github issues I see there might be other problems, but I was wondering what 
>> the roadmap was :)
>> 
>> Thanks in advance,
>> Laurent.
>> 
>>  
>> 
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "pylons-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected] 
>> .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/pylons-discuss/CAB7cU6wABSop5B7aHnaJCnL1vMQaKEfo%2B3SBrBNtSfFCF0267w%40mail.gmail.com
>>  
>> .
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "pylons-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected] 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/pylons-discuss/EC257B24-A634-4EEC-9591-E7EFDFEDD036%40luhn.com
>  
> .

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion visit 
https://groups.google.com/d/msgid/pylons-discuss/ECCD8423-3AD8-4089-92DB-599379505082%400x58.com.


Re: [pylons-discuss] Python 3.13 and Pyramid

2024-10-22 Thread Laurent Daverio
I've added :

"legacy-cgi>=2.6; python_version>='3.13'",

in my `pyproject.toml`file, as suggested by the PR discussions, and it
fixed the tests for me :) Thanks again!

Laurent.

Le mar. 22 oct. 2024 à 23:54, Laurent Daverio  a écrit :

> Oh, many thanks for the info :) I had checked out the Github issues, but I
> had overlooked the PRs, sorry :/
>
> As for me, I don't need Python 3.13 just yet: FreeBSD ports have been
> stuck at 3.11 for months, and Debian 12 also uses 3.11. So, I will probably
> stay with that version for now.
>
> Le mar. 22 oct. 2024 à 23:49, Theron Luhn  a écrit :
>
>> I’ve opened a PR to fix the 1.8 branch, so hopefully we can get a release
>> soon.  https://github.com/Pylons/webob/pull/469
>>
>> In the meantime, workaround is to install the `legacy-cgi` package.
>>
>> — Theron
>>
>>
>>
>> On Oct 22, 2024, at 2:45 PM, Laurent Daverio  wrote:
>>
>> Hello List,
>>
>> I'm trying Python 3.13 for the first time today (better late than never),
>> and my CI tests seem to indicate that Pyramid might have problems with
>> Python 3.13, because Pyramid requires WebOb, which requires cgi, and cgi
>> seems to have been removed from the standard library in 3.13. From the
>> Github issues I see there might be other problems, but I was wondering what
>> the roadmap was :)
>>
>> Thanks in advance,
>> Laurent.
>>
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "pylons-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/pylons-discuss/CAB7cU6wABSop5B7aHnaJCnL1vMQaKEfo%2B3SBrBNtSfFCF0267w%40mail.gmail.com
>> 
>> .
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "pylons-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/pylons-discuss/EC257B24-A634-4EEC-9591-E7EFDFEDD036%40luhn.com
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pylons-discuss/CAB7cU6ydTQzLWpbgokCaM5BJNmemAxOGiB8BTNRsopxPY9sHcw%40mail.gmail.com.


Re: [pylons-discuss] Python 3.13 and Pyramid

2024-10-22 Thread Laurent Daverio
Oh, many thanks for the info :) I had checked out the Github issues, but I
had overlooked the PRs, sorry :/

As for me, I don't need Python 3.13 just yet: FreeBSD ports have been stuck
at 3.11 for months, and Debian 12 also uses 3.11. So, I will probably stay
with that version for now.

Le mar. 22 oct. 2024 à 23:49, Theron Luhn  a écrit :

> I’ve opened a PR to fix the 1.8 branch, so hopefully we can get a release
> soon.  https://github.com/Pylons/webob/pull/469
>
> In the meantime, workaround is to install the `legacy-cgi` package.
>
> — Theron
>
>
>
> On Oct 22, 2024, at 2:45 PM, Laurent Daverio  wrote:
>
> Hello List,
>
> I'm trying Python 3.13 for the first time today (better late than never),
> and my CI tests seem to indicate that Pyramid might have problems with
> Python 3.13, because Pyramid requires WebOb, which requires cgi, and cgi
> seems to have been removed from the standard library in 3.13. From the
> Github issues I see there might be other problems, but I was wondering what
> the roadmap was :)
>
> Thanks in advance,
> Laurent.
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "pylons-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/pylons-discuss/CAB7cU6wABSop5B7aHnaJCnL1vMQaKEfo%2B3SBrBNtSfFCF0267w%40mail.gmail.com
> 
> .
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "pylons-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/pylons-discuss/EC257B24-A634-4EEC-9591-E7EFDFEDD036%40luhn.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pylons-discuss/CAB7cU6xjNo0j2AsRWkr2nK5Fm6gWz6ehK4gU_C1purw_Cvf%3Dzg%40mail.gmail.com.


Re: [pylons-discuss] Python 3.13 and Pyramid

2024-10-22 Thread Theron Luhn
I’ve opened a PR to fix the 1.8 branch, so hopefully we can get a release soon. 
 https://github.com/Pylons/webob/pull/469

In the meantime, workaround is to install the `legacy-cgi` package.

— Theron



> On Oct 22, 2024, at 2:45 PM, Laurent Daverio  wrote:
> 
> Hello List,
> 
> I'm trying Python 3.13 for the first time today (better late than never), and 
> my CI tests seem to indicate that Pyramid might have problems with Python 
> 3.13, because Pyramid requires WebOb, which requires cgi, and cgi seems to 
> have been removed from the standard library in 3.13. From the Github issues I 
> see there might be other problems, but I was wondering what the roadmap was :)
> 
> Thanks in advance,
> Laurent.
> 
>  
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "pylons-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected] 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/pylons-discuss/CAB7cU6wABSop5B7aHnaJCnL1vMQaKEfo%2B3SBrBNtSfFCF0267w%40mail.gmail.com
>  
> .

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pylons-discuss/EC257B24-A634-4EEC-9591-E7EFDFEDD036%40luhn.com.