File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -701,7 +701,6 @@ def do_init(
701
701
pypi_mirror = pypi_mirror ,
702
702
categories = categories ,
703
703
)
704
- err .print (packages_updated )
705
704
706
705
if not allow_global and not deploy and "PIPENV_ACTIVE" not in os .environ :
707
706
console .print (
Original file line number Diff line number Diff line change 5
5
import sys
6
6
import tempfile
7
7
import warnings
8
- from functools import lru_cache
8
+ from functools import cached_property , lru_cache
9
9
from pathlib import Path
10
10
from typing import Dict , List , Optional
11
11
@@ -308,7 +308,7 @@ def pip_options(self):
308
308
)
309
309
return pip_options
310
310
311
- @property
311
+ @cached_property
312
312
def session (self ):
313
313
return self .pip_command ._build_session (self .pip_options )
314
314
Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ def test_lock_package_with_compatible_release_specifier(pipenv_instance_private_
588
588
@pytest .mark .install
589
589
def test_default_lock_overwrite_dev_lock (pipenv_instance_pypi ):
590
590
with pipenv_instance_pypi () as p :
591
- c = p .pipenv ("install ' click==6.7' " )
591
+ c = p .pipenv ("install click==6.7" )
592
592
assert c .returncode == 0
593
593
c = p .pipenv ("install -d flask" )
594
594
assert c .returncode == 0
You can’t perform that action at this time.
0 commit comments