PYTHON-4756 Add changelog note about dropping srv extra (#1861)

This commit is contained in:
Steven Silvester 2024-09-16 21:23:40 -05:00 committed by GitHub
parent 3b21517608
commit fb51c11cac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,6 +93,10 @@ Unavoidable breaking changes
- Since we are now using ``hatch`` as our build backend, we no longer have a usable ``setup.py`` file
and require installation using ``pip``. Attempts to invoke the ``setup.py`` file will raise an exception.
Additionally, ``pip`` >= 21.3 is now required for editable installs.
- We no longer support the ``srv`` extra, since ``dnspython`` is included as a dependency in PyMongo 4.7+.
Instead of ``pip install pymongo[srv]``, use ``pip install pymongo``.
- We no longer support the ``tls`` extra, which was only valid for Python 2.
Instead of ``pip install pymongo[tls]``, use ``pip install pymongo``.
Issues Resolved
...............