File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 1919* Deprecate ` conda_build.render._represent_omap ` . Unused. (#5282 )
2020* Deprecate ` conda_build.render._unicode_representer ` . Unused. (#5282 )
2121* Menuinst validation warnings will be raised as errors in 25.11. (#5569 )
22+ * Remove ` conda_build.utils.root_script_dir ` . (#5726 )
2223
2324### Other
2425
Original file line number Diff line number Diff line change 6868from conda .models .version import VersionOrder
6969from conda .utils import unix_path_to_win
7070
71- from .deprecations import deprecated
7271from .exceptions import BuildLockError
7372
7473if TYPE_CHECKING :
8685on_linux = sys .platform == "linux"
8786
8887codec = getpreferredencoding () or "utf-8"
89- deprecated .constant (
90- "25.3" ,
91- "25.5" ,
92- "root_script_dir" ,
93- os .path .join (context .root_prefix , "Scripts" if on_win else "bin" ),
94- )
9588mmap_MAP_PRIVATE = 0 if on_win else mmap .MAP_PRIVATE
9689mmap_PROT_READ = 0 if on_win else mmap .PROT_READ
9790mmap_PROT_WRITE = 0 if on_win else mmap .PROT_WRITE
You can’t perform that action at this time.
0 commit comments