File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 4
4
5
5
from __future__ import annotations
6
6
7
+ import collections
7
8
import contextlib
8
9
import itertools
9
10
import os
13
14
from site import USER_BASE , USER_SITE
14
15
from typing import ClassVar
15
16
16
- import jaraco .collections
17
-
18
17
from ..core import Command
19
18
from ..debug import DEBUG
20
19
from ..errors import DistutilsOptionError , DistutilsPlatformError
@@ -432,12 +431,12 @@ def finalize_options(self) -> None: # noqa: C901
432
431
local_vars ['userbase' ] = self .install_userbase
433
432
local_vars ['usersite' ] = self .install_usersite
434
433
435
- self .config_vars = jaraco .collections .DictStack ([
436
- fw .vars (),
437
- compat_vars ,
438
- sysconfig .get_config_vars (),
434
+ self .config_vars = collections .ChainMap (
439
435
local_vars ,
440
- ])
436
+ sysconfig .get_config_vars (),
437
+ compat_vars ,
438
+ fw .vars (),
439
+ )
441
440
442
441
self .expand_basedirs ()
443
442
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ dependencies = [
22
22
" packaging" ,
23
23
" jaraco.functools >= 4" ,
24
24
" more_itertools" ,
25
- " jaraco.collections" ,
26
25
]
27
26
dynamic = [" version" ]
28
27
You can’t perform that action at this time.
0 commit comments