File tree Expand file tree Collapse file tree 1 file changed +5
-18
lines changed Expand file tree Collapse file tree 1 file changed +5
-18
lines changed Original file line number Diff line number Diff line change 1
1
# Taken from pip
2
2
# see https://github.com/pypa/pip/blob/95bcf8c5f6394298035a7332c441868f3b0169f4/tasks/vendoring/__init__.py
3
- """"Vendoring script, python 3.5 needed"""
3
+ """"Vendoring script, python 3.6>= needed"""
4
4
5
5
import itertools
6
6
import re
87
87
"from platformdirs import user_cache_dir" ,
88
88
"from pipenv.patched.pip._vendor.platformdirs import user_cache_dir" ,
89
89
),
90
- (
91
- "from distlib import" ,
92
- "from pipenv.patched.pip._vendor.distlib import"
93
- ),
94
- (
95
- "from distlib.metadata" ,
96
- "from pipenv.patched.pip._vendor.distlib.metadata import"
97
- ),
98
- (
99
- "from distlib.wheel import" ,
100
- "from pipenv.patched.pip._vendor.distlib.wheel import"
101
- ),
102
- (
103
- "import colorama" ,
104
- "from pipenv.patched.pip._vendor import colorama"
105
- )
106
-
90
+ ("from distlib import" , "from pipenv.patched.pip._vendor.distlib import" ),
91
+ ("from distlib.metadata" , "from pipenv.patched.pip._vendor.distlib.metadata import" ),
92
+ ("from distlib.wheel import" , "from pipenv.patched.pip._vendor.distlib.wheel import" ),
93
+ ("import colorama" , "from pipenv.patched.pip._vendor import colorama" ),
107
94
]
108
95
109
96
You can’t perform that action at this time.
0 commit comments