mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
@@ -1,3 +1,5 @@
|
||||
7.8.8:
|
||||
- Make --fancy default for windows users.
|
||||
7.8.7:
|
||||
- Make resolver use client python for setup.py egg_info (very fancy).
|
||||
- Fix a nasty windows bug.
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
# //___/ / / / //___/ / // // / / || / /
|
||||
# // / / // ((____ // / / ||/ /
|
||||
|
||||
__version__ = '7.8.7'
|
||||
__version__ = '7.8.8'
|
||||
|
||||
@@ -1974,6 +1974,10 @@ def shell(three=None, python=False, fancy=False, shell_args=None, anyway=False):
|
||||
# Load .env file.
|
||||
load_dot_env()
|
||||
|
||||
# Use fancy mode for Windows.
|
||||
if os.name == 'nt':
|
||||
fancy = True
|
||||
|
||||
do_shell(three=three, python=python, fancy=fancy, shell_args=shell_args)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user