Bug 2196806 - python-mongomock fails to build with Python 3.12: NotImplementedError: The codec options are not implemented in mongomock alone, you need to import the pymongo library as well.
Summary: python-mongomock fails to build with Python 3.12: NotImplementedError: The co...
Keywords:
Status: NEW
Alias: None
Product: Fedora
Classification: Fedora
Component: python-mongomock
Version: 39
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Fabian Affolter
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: PYTHON3.12
TreeView+ depends on / blocked
 
Reported: 2023-05-10 09:40 UTC by Tomáš Hrnčiar
Modified: 2023-08-16 07:14 UTC (History)
3 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed:
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description Tomáš Hrnčiar 2023-05-10 09:40:05 UTC
python-mongomock fails to build with Python 3.12.0a7.

=================================== FAILURES ===================================
____________ CollectionAPITest.test__codec_options_without_pymongo _____________

self = Collection(Database(mongomock.MongoClient('localhost', 27017), 'somedb'), 'collection')

    @property
    def codec_options(self):
        if not bson_codec_options:
>           raise NotImplementedError(
                'The codec options are not implemented in mongomock alone, you need to import '
                'the pymongo library as well.')
E           NotImplementedError: The codec options are not implemented in mongomock alone, you need to import the pymongo library as well.

mongomock/collection.py:423: NotImplementedError

The above exception was the direct cause of the following exception:

self = <tests.test__collection_api.CollectionAPITest testMethod=test__codec_options_without_pymongo>

    @skipIf(_HAVE_PYMONGO, 'pymongo installed')
    def test__codec_options_without_pymongo(self):
        with self.assertRaises(NotImplementedError):
>           self.db.collection.codec_options  # pylint: disable=pointless-statement

tests/test__collection_api.py:1934: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def __getattr__(self, attr):
>       if attr.startswith('_'):
E       SystemError: <method 'startswith' of 'str' objects> returned a result with an exception set

mongomock/collection.py:394: SystemError
_____________ DatabaseAPITest.test__codec_options_without_pymongo ______________

self = Database(mongomock.MongoClient('localhost', 27017), 'somedb')

    @property
    def codec_options(self):
        if not bson_codec_options:
>           raise NotImplementedError(
                'The codec options are not implemented in mongomock alone, you need to import '
                'the pymongo library as well.')
E           NotImplementedError: The codec options are not implemented in mongomock alone, you need to import the pymongo library as well.

mongomock/database.py:55: NotImplementedError

The above exception was the direct cause of the following exception:

self = <tests.test__database_api.DatabaseAPITest testMethod=test__codec_options_without_pymongo>

    @skipIf(_HAVE_PYMONGO, 'pymongo installed')
    def test__codec_options_without_pymongo(self):
        with self.assertRaises(NotImplementedError):
>           self.database.codec_options  # pylint: disable=pointless-statement

tests/test__database_api.py:109: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def __getattr__(self, attr):
>       if attr.startswith('_'):
E       SystemError: <method 'startswith' of 'str' objects> returned a result with an exception set

mongomock/database.py:35: SystemError

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/05902291-python-mongomock/

For all our attempts to build python-mongomock with Python 3.12, see:
https://copr.fedorainfracloud.org/coprs/g/python/python3.12/package/python-mongomock/

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.

Comment 1 Fedora Release Engineering 2023-08-16 07:14:08 UTC
This bug appears to have been reported against 'rawhide' during the Fedora Linux 39 development cycle.
Changing version to 39.


Note You need to log in before you can comment on or make changes to this bug.