python-treq fails to build with Python 3.13.0b1.
+ sphinx-build docs html
Running Sphinx v7.2.6
Configuration error:
There is a programmable error in your configuration file:
Traceback (most recent call last):
File "/usr/lib/python3.13/site-packages/sphinx/config.py", line 358, in eval_config_file
exec(code, namespace) # NoQA: S102
~~~~^^^^^^^^^^^^^^^^^
File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/docs/conf.py", line 52, in <module>
from treq import __version__ as release
File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/__init__.py", line 5, in <module>
from treq.api import head, get, post, put, patch, delete, request
File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/api.py", line 5, in <module>
from treq.client import HTTPClient
File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/client.py", line 32, in <module>
from treq.response import _Response
File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/response.py", line 7, in <module>
from treq.content import collect, content, json_content, text_content
File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/content.py", line 1, in <module>
import cgi
ModuleNotFoundError: No module named 'cgi'
According to https://docs.python.org/3.13/whatsnew/3.13.html module cgi was removed:
PEP 594: Remove the cgi and cgitb modules, deprecated in Python 3.11.
cgi.FieldStorage can typically be replaced with urllib.parse.parse_qsl() for GET and HEAD requests, and the email.message module or multipart PyPI project for POST and PUT.
cgi.parse() can be replaced by calling urllib.parse.parse_qs() directly on the desired query string, except for multipart/form-data input, which can be handled as described for cgi.parse_multipart().
cgi.parse_multipart() can be replaced with the functionality in the email package (e.g. email.message.EmailMessage and email.message.Message) which implements the same MIME RFCs, or with the multipart PyPI project.
cgi.parse_header() can be replaced with the functionality in the email package, which implements the same MIME RFCs. For example, with email.message.EmailMessage:
from email.message import EmailMessage
msg = EmailMessage()
msg['content-type'] = 'application/json; charset="utf8"'
main, params = msg.get_content_type(), msg['content-type'].params
(Contributed by Victor Stinner in gh-104773.)
https://docs.python.org/3.13/whatsnew/3.13.html
For the build logs, see:
https://copr-be.cloud.fedoraproject.org/results/@python/python3.13-b1/fedora-rawhide-x86_64/07532294-python-treq/
For all our attempts to build python-treq with Python 3.13, see:
https://copr.fedorainfracloud.org/coprs/g/python/python3.13-b1/package/python-treq/
Testing and mass rebuild of packages is happening in copr.
You can follow these instructions to test locally in mock if your package builds with Python 3.13:
https://copr.fedorainfracloud.org/coprs/g/python/python3.13-b1/
Let us know here if you have any questions.
Python 3.13 is planned to be included in Fedora 41.
To make that update smoother, we're building Fedora packages with all pre-releases of Python 3.13.
A build failure prevents us from testing all dependent packages (transitive [Build]Requires),
so if this package is required a lot, it's important for us to get it fixed soon.
We'd appreciate help from the people who know this package best,
but if you don't want to work on this now, let us know so we can try to work around it on our side.
*** Bug 2291955 has been marked as a duplicate of this bug. ***
Comment 2Charalampos Stratakis
2024-06-18 13:27:32 UTC
The changes to eliminate the cgi usage in treq add the multipart[0] dependency which we don't package on Fedora. We actually package python-multipart[1] which is a different project.
The multipart used by treq looks abandoned upstream (no commits since 2021).
[0] https://pypi.org/project/multipart/
[1] https://pypi.org/project/python-multipart/
Comment 6Fedora Update System
2024-06-18 21:17:31 UTC
FEDORA-2024-9f99ff130b (python-treq-23.11.0-3.fc41) has been pushed to the Fedora 41 stable repository.
If problem still persists, please make note of it in this bug report.
python-treq fails to build with Python 3.13.0b1. + sphinx-build docs html Running Sphinx v7.2.6 Configuration error: There is a programmable error in your configuration file: Traceback (most recent call last): File "/usr/lib/python3.13/site-packages/sphinx/config.py", line 358, in eval_config_file exec(code, namespace) # NoQA: S102 ~~~~^^^^^^^^^^^^^^^^^ File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/docs/conf.py", line 52, in <module> from treq import __version__ as release File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/__init__.py", line 5, in <module> from treq.api import head, get, post, put, patch, delete, request File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/api.py", line 5, in <module> from treq.client import HTTPClient File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/client.py", line 32, in <module> from treq.response import _Response File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/response.py", line 7, in <module> from treq.content import collect, content, json_content, text_content File "/builddir/build/BUILD/python-treq-23.11.0-build/treq-23.11.0/src/treq/content.py", line 1, in <module> import cgi ModuleNotFoundError: No module named 'cgi' According to https://docs.python.org/3.13/whatsnew/3.13.html module cgi was removed: PEP 594: Remove the cgi and cgitb modules, deprecated in Python 3.11. cgi.FieldStorage can typically be replaced with urllib.parse.parse_qsl() for GET and HEAD requests, and the email.message module or multipart PyPI project for POST and PUT. cgi.parse() can be replaced by calling urllib.parse.parse_qs() directly on the desired query string, except for multipart/form-data input, which can be handled as described for cgi.parse_multipart(). cgi.parse_multipart() can be replaced with the functionality in the email package (e.g. email.message.EmailMessage and email.message.Message) which implements the same MIME RFCs, or with the multipart PyPI project. cgi.parse_header() can be replaced with the functionality in the email package, which implements the same MIME RFCs. For example, with email.message.EmailMessage: from email.message import EmailMessage msg = EmailMessage() msg['content-type'] = 'application/json; charset="utf8"' main, params = msg.get_content_type(), msg['content-type'].params (Contributed by Victor Stinner in gh-104773.) https://docs.python.org/3.13/whatsnew/3.13.html For the build logs, see: https://copr-be.cloud.fedoraproject.org/results/@python/python3.13-b1/fedora-rawhide-x86_64/07532294-python-treq/ For all our attempts to build python-treq with Python 3.13, see: https://copr.fedorainfracloud.org/coprs/g/python/python3.13-b1/package/python-treq/ Testing and mass rebuild of packages is happening in copr. You can follow these instructions to test locally in mock if your package builds with Python 3.13: https://copr.fedorainfracloud.org/coprs/g/python/python3.13-b1/ Let us know here if you have any questions. Python 3.13 is planned to be included in Fedora 41. To make that update smoother, we're building Fedora packages with all pre-releases of Python 3.13. A build failure prevents us from testing all dependent packages (transitive [Build]Requires), so if this package is required a lot, it's important for us to get it fixed soon. We'd appreciate help from the people who know this package best, but if you don't want to work on this now, let us know so we can try to work around it on our side.