summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-02 19:24:14 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-03 20:49:50 +0100
commiteb363c321b1283802b75c641d1f6dcf9fd863032 (patch)
tree6629fb5737eb238a8c91084f3d97b029214eceef /setuptools/command
parent498fb5cd7813fcf6fb4ad17f7b039e305a0ee458 (diff)
downloadpython-setuptools-git-eb363c321b1283802b75c641d1f6dcf9fd863032.tar.gz
Use better wording in description of 'compat' editable mode
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/editable_wheel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/editable_wheel.py b/setuptools/command/editable_wheel.py
index 4110897d..f6749ed1 100644
--- a/setuptools/command/editable_wheel.py
+++ b/setuptools/command/editable_wheel.py
@@ -60,7 +60,7 @@ class _EditableMode(Enum):
Possible editable installation modes:
a) `lenient` (new files automatically added to the package - DEFAULT)
b) `strict` (requires a new installation when files are added/removed)
- c) `compat` (attempts to replicate `python setup.py develop` - DEPRECATED)
+ c) `compat` (attempts to emulate `python setup.py develop` - DEPRECATED)
"""
STRICT = "strict"