You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been using pip-review for a while, but it has just seemed to stop working recently. when I try to run it on the command line with the -i option, it just sits and hangs and never returns anything. I finally have to Ctrl-C to get out of it, then it shows:
C:\Users>pip-review -i
Operation cancelled by user
Traceback (most recent call last):
File "c:\python27\lib\runpy.py", line 162, in run_module_as_main
"main", fname, loader, pkg_name)
File "c:\python27\lib\runpy.py", line 72, in run_code
exec code in run_globals
File "c:\Python27\Scripts\pip-review.exe_main.py", line 9, in
File "c:\Python27\Lib\site-packages\pip_review_main.py", line 201, in main
outdated = get_outdated_packages(forwarded)
File "c:\Python27\Lib\site-packages\pip_review_main_.py", line 185, in get_outdated_packages
output = check_output(command).decode('utf-8')
File "c:\python27\lib\subprocess.py", line 567, in check_output
output, unused_err = process.communicate()
File "c:\python27\lib\subprocess.py", line 791, in communicate
stdout = _eintr_retry_call(self.stdout.read)
File "c:\python27\lib\subprocess.py", line 476, in _eintr_retry_call
return func(*args)
KeyboardInterrupt
I'm using Python 2.7.11 on a Windows 7 machine.
The text was updated successfully, but these errors were encountered:
It may very well be the case that pip-review 1.0 (which is indeed the latest version) isn't compatible with pip 18. I haven't tested this combination yet. I'll look into it.
On my mac, pip-review 1.0 works fine with pip 18, both under python 2.7 and python 3.5. So if this is a real issue, it is probably windows-specific. I need help from a Windows user to figure out what is causing this issue. @texasreddog, could you give this a try, perhaps with a fresh virtual environment to rule out side effects from installed other packages?
I've been using pip-review for a while, but it has just seemed to stop working recently. when I try to run it on the command line with the -i option, it just sits and hangs and never returns anything. I finally have to Ctrl-C to get out of it, then it shows:
C:\Users>pip-review -i
Operation cancelled by user
Traceback (most recent call last):
File "c:\python27\lib\runpy.py", line 162, in run_module_as_main
"main", fname, loader, pkg_name)
File "c:\python27\lib\runpy.py", line 72, in run_code
exec code in run_globals
File "c:\Python27\Scripts\pip-review.exe_main.py", line 9, in
File "c:\Python27\Lib\site-packages\pip_review_main.py", line 201, in main
outdated = get_outdated_packages(forwarded)
File "c:\Python27\Lib\site-packages\pip_review_main_.py", line 185, in get_outdated_packages
output = check_output(command).decode('utf-8')
File "c:\python27\lib\subprocess.py", line 567, in check_output
output, unused_err = process.communicate()
File "c:\python27\lib\subprocess.py", line 791, in communicate
stdout = _eintr_retry_call(self.stdout.read)
File "c:\python27\lib\subprocess.py", line 476, in _eintr_retry_call
return func(*args)
KeyboardInterrupt
I'm using Python 2.7.11 on a Windows 7 machine.
The text was updated successfully, but these errors were encountered: