File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 2
2
CHANGES
3
3
=======
4
4
5
+ v25.0.0
6
+ -------
7
+
8
+ * #674: Default ``sys.path `` manipulation by easy-install.pth
9
+ is now "raw", meaning that when writing easy-install.pth
10
+ during any install operation, the ``sys.path `` will not be
11
+ rewritten, giving preference to easy_installed packages.
12
+
13
+ To retain the old behavior when using any easy_install
14
+ operation (including ``setup.py install `` when setuptools is
15
+ present), set the environment variable:
16
+
17
+ SETUPTOOLS_SYS_PATH_TECHNIQUE=rewrite
18
+
19
+ This project hopes that that few if any environments find it
20
+ necessary to retain the old behavior, and intends to drop
21
+ support for it altogether in a future release. Please report
22
+ any relevant concerns in the ticket for this change.
23
+
5
24
v24.3.1
6
25
-------
7
26
Original file line number Diff line number Diff line change @@ -1661,7 +1661,7 @@ def _wrap_lines(cls, lines):
1661
1661
""" )
1662
1662
1663
1663
1664
- if os .environ .get ('SETUPTOOLS_SYS_PATH_TECHNIQUE' , 'rewrite ' ) == 'rewrite' :
1664
+ if os .environ .get ('SETUPTOOLS_SYS_PATH_TECHNIQUE' , 'raw ' ) == 'rewrite' :
1665
1665
PthDistributions = RewritePthDistributions
1666
1666
1667
1667
You can’t perform that action at this time.
0 commit comments