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
The PyMongo Installation docs clearly states "Do not install the “bson” package from pypi. PyMongo comes with its own bson package; doing “pip install bson” or “easy_install bson” installs a third-party package that is incompatible with PyMongo."
The bson package in pypi has not been updated in pypi since 2020. Any environment containing both bson and pymongo is likely to break.
Expected behavior
A one-line change. Any requirement from the extra bson dependency will be achieved by installing pymongo extra instead.
Steps to reproduce the behavior
A simple example that demonstrates how bson has gone out-of-date.
The problem
The PyMongo Installation docs clearly states "Do not install the “bson” package from pypi. PyMongo comes with its own bson package; doing “pip install bson” or “easy_install bson” installs a third-party package that is incompatible with PyMongo."
The bson package in pypi has not been updated in pypi since 2020. Any environment containing both bson and pymongo is likely to break.
Expected behavior
A one-line change. Any requirement from the extra bson dependency will be achieved by installing pymongo extra instead.
Steps to reproduce the behavior
A simple example that demonstrates how bson has gone out-of-date.
The text was updated successfully, but these errors were encountered: