future fails to build with Python 3.12.0a5. ___________________________ BuiltinTest.test_compile ___________________________ self = <test_future.test_builtins.BuiltinTest testMethod=test_compile> def test_compile(self): compile('print(1)\n', '', 'exec') bom = b'\xef\xbb\xbf' compile(bom + b'print(1)\n', '', 'exec') compile(source='pass', filename='?', mode='exec') compile(dont_inherit=0, filename='tmp', source='0', mode='eval') compile('pass', '?', dont_inherit=1, mode='exec') # Fails on Py2.7: # Was: compile(memoryview(b"text"), "name", "exec") self.assertRaises(TypeError, compile) self.assertRaises(ValueError, compile, 'print(42)\n', '<string>', 'badmode') self.assertRaises(ValueError, compile, 'print(42)\n', '<string>', 'single', 0xff) # Raises TypeError in Python < v3.5, ValueError in v3.5: > self.assertRaises((TypeError, ValueError), compile, chr(0), 'f', 'exec') E SyntaxError: source code string cannot contain null bytes tests/test_future/test_builtins.py:527: SyntaxError The parser now raises SyntaxError when parsing source code containing null bytes. (Contributed by Pablo Galindo in gh-96670.) https://github.com/python/cpython/issues/96670 https://docs.python.org/3.12/whatsnew/3.12.html For the build logs, see: https://copr-be.cloud.fedoraproject.org/results/@python/python3.12/fedora-rawhide-x86_64/05598396-future/ For all our attempts to build future with Python 3.12, see: https://copr.fedorainfracloud.org/coprs/g/python/python3.12/package/future/ 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.12: https://copr.fedorainfracloud.org/coprs/g/python/python3.12/ Let us know here if you have any questions. Python 3.12 is planned to be included in Fedora 39. To make that update smoother, we're building Fedora packages with all pre-releases of Python 3.12. 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.
I've reported this upstream https://github.com/PythonCharmers/python-future/issues/618. Setting severity to high since this is currently the biggest blocker for Python 3.12 mass rebuild, blocking ~80 packages.
PR: https://src.fedoraproject.org/rpms/future/pull-request/11
FEDORA-2023-7632e5494d has been submitted as an update to Fedora 39. https://bodhi.fedoraproject.org/updates/FEDORA-2023-7632e5494d
FEDORA-2023-7632e5494d has been pushed to the Fedora 39 stable repository. If problem still persists, please make note of it in this bug report.