File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Unavoidable breaking changes
2020
2121- Since we are now using ``hatch `` as our build backend, we no longer have a usable ``setup.py `` file
2222 and require installation using ``pip ``. Attempts to invoke the ``setup.py `` file will raise an exception.
23+ Additionally, ``pip `` >= 21.3 is now required for editable installs.
2324
2425Changes in Version 4.7.3
2526-------------------------
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- msg = "PyMongo>=4.8 no longer supports building via setup.py, use python -m pip install <path/to/pymongo> instead"
3+ msg = (
4+ "PyMongo>=4.8 no longer supports building via setup.py, use python -m pip install <path/to/pymongo> instead. If "
5+ "this is an editable install (-e) please upgrade to pip>=21.3 first: python -m pip install --upgrade pip"
6+ )
47
58raise RuntimeError (msg )
You can’t perform that action at this time.
0 commit comments