python-paste-deploy fails to build with Python 3.11.0a1.
==================================== ERRORS ====================================
___________________ ERROR collecting tests/test_basic_app.py ___________________
tests/test_basic_app.py:1: in <module>
from paste.deploy import loadapp
paste/deploy/__init__.py:3: in <module>
from paste.deploy.loadwsgi import *
paste/deploy/loadwsgi.py:56: in <module>
class NicerConfigParser(ConfigParser):
paste/deploy/loadwsgi.py:64: in NicerConfigParser
read_file = getattr(ConfigParser, 'read_file', ConfigParser.readfp)
E AttributeError: type object 'ConfigParser' has no attribute 'readfp'
____________________ ERROR collecting tests/test_config.py _____________________
tests/test_config.py:1: in <module>
from paste.deploy import loadapp, appconfig
paste/deploy/__init__.py:3: in <module>
from paste.deploy.loadwsgi import *
paste/deploy/loadwsgi.py:56: in <module>
class NicerConfigParser(ConfigParser):
paste/deploy/loadwsgi.py:64: in NicerConfigParser
read_file = getattr(ConfigParser, 'read_file', ConfigParser.readfp)
E AttributeError: type object 'ConfigParser' has no attribute 'readfp'
_______________ ERROR collecting tests/test_config_middleware.py _______________
tests/test_config_middleware.py:3: in <module>
from paste.deploy.config import ConfigMiddleware
paste/deploy/__init__.py:3: in <module>
from paste.deploy.loadwsgi import *
paste/deploy/loadwsgi.py:56: in <module>
class NicerConfigParser(ConfigParser):
paste/deploy/loadwsgi.py:64: in NicerConfigParser
read_file = getattr(ConfigParser, 'read_file', ConfigParser.readfp)
E AttributeError: type object 'ConfigParser' has no attribute 'readfp'
____________________ ERROR collecting tests/test_filter.py _____________________
tests/test_filter.py:1: in <module>
from paste.deploy import loadapp
paste/deploy/__init__.py:3: in <module>
from paste.deploy.loadwsgi import *
paste/deploy/loadwsgi.py:56: in <module>
class NicerConfigParser(ConfigParser):
paste/deploy/loadwsgi.py:64: in NicerConfigParser
read_file = getattr(ConfigParser, 'read_file', ConfigParser.readfp)
E AttributeError: type object 'ConfigParser' has no attribute 'readfp'
=========================== short test summary info ============================
ERROR tests/test_basic_app.py - AttributeError: type object 'ConfigParser' ha...
ERROR tests/test_config.py - AttributeError: type object 'ConfigParser' has n...
ERROR tests/test_config_middleware.py - AttributeError: type object 'ConfigPa...
ERROR tests/test_filter.py - AttributeError: type object 'ConfigParser' has n...
!!!!!!!!!!!!!!!!!!! Interrupted: 4 errors during collection !!!!!!!!!!!!!!!!!!!!
============================== 4 errors in 0.24s ===============================
Removed from the configparser module: the SafeConfigParser class, the filename
property of the ParsingError class, the readfp() method of the ConfigParser
class, deprecated since Python 3.2. (Contributed by Hugo van Kemenade in
bpo-45173.)
https://docs.python.org/3.11/whatsnew/3.11.html
For the build logs, see:
https://copr-be.cloud.fedoraproject.org/results/@python/python3.11/fedora-rawhide-x86_64/02910356-python-paste-deploy/
For all our attempts to build python-paste-deploy with Python 3.11, see:
https://copr.fedorainfracloud.org/coprs/g/python/python3.11/package/python-paste-deploy/
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.11:
https://copr.fedorainfracloud.org/coprs/g/python/python3.11/
Let us know here if you have any questions.
Python 3.11 is planned to be included in Fedora 37. To make that update smoother, we're building Fedora packages with all pre-releases of Python 3.11.
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.
Changes in configparser module were reverted in Python 3.11 and will be part of Python 3.12, thus I am closing this bugzilla. On the other hand, I highly encourage you to work with the upstream to fix it so we won't have to deal with it next year.
Comment 2Hugo van Kemenade
2022-05-10 15:04:56 UTC