File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Unavoidable breaking changes
20
20
21
21
- Since we are now using ``hatch `` as our build backend, we no longer have a usable ``setup.py `` file
22
22
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.
23
24
24
25
Changes in Version 4.7.3
25
26
-------------------------
Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
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
+ )
4
7
5
8
raise RuntimeError (msg )
You can’t perform that action at this time.
0 commit comments