File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Unavoidable breaking changes
16
16
............................
17
17
18
18
- Since we are now using ``hatch `` as our build backend, we no longer have a ``setup.py `` file
19
- and require installation using ``pip ``.
19
+ and require installation using ``pip ``. `` pip `` >= 21.3 is required for editable installs.
20
20
21
21
Changes in Version 4.7.3
22
22
-------------------------
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