You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebTest depends on WebOb>1.2, which internally uses the cgi module, deprecated in Python 3.13. Python 3.14 is now available, and this module is also not included.
We are using WebTest internally in our organization's test suite, and this issue is blocking our progress to newer Python versions.
I understand that this issue is not directly related to this project. There is an open issue at WebObPylons/webob#437, but it seems to be inactive.
Is your feature request related to an issue? Please describe.
Yes, when running our tests, this warning constantly appears:
webob/compat.py:5: DeprecationWarning: 'cgi' is deprecated and slated for removal in Python 3.13
from cgi import parse_header
This simple program is not able to run in Python >= 3.13
fromcgiimportparse_headerparse_header('')
Describe the solution you'd like
Contact WebOb organization directly as this project is a main consumer and try convincing them to fix this issue ASAP
Describe alternatives you've considered
Consider using a different backend with similar capabilities as WebOb
The text was updated successfully, but these errors were encountered:
Feature Request
WebTest depends on
WebOb>1.2
, which internally uses thecgi
module, deprecated inPython 3.13
.Python 3.14
is now available, and this module is also not included.We are using
WebTest
internally in our organization's test suite, and this issue is blocking our progress to newer Python versions.I understand that this issue is not directly related to this project. There is an open issue at
WebOb
Pylons/webob#437, but it seems to be inactive.Is your feature request related to an issue? Please describe.
Yes, when running our tests, this warning constantly appears:
This simple program is not able to run in
Python >= 3.13
Describe the solution you'd like
Contact
WebOb
organization directly as this project is a main consumer and try convincing them to fix this issue ASAPDescribe alternatives you've considered
Consider using a different backend with similar capabilities as
WebOb
The text was updated successfully, but these errors were encountered: