pew-org / pew

A tool to manage multiple virtual environments written in pure python
MIT License
1.17k stars 81 forks source link

Pinned `psutil` dependency on Windows causes unnecessary conflicts #192

Closed ankostis closed 5 years ago

ankostis commented 6 years ago

The psutil Windows-only dependency is pinned to version 5.3.1'. In a python-installation with latestpsutilthis will cause it to downgrade from5.4.3` (as of May 2018). Is there any specific reason for the pinning?

[edit] My quick blame-search did not reveal the reason for the pinning: 02efd882

pfmoore commented 6 years ago

Further note - this causes failures when installing with Python 3.7, as there are no psutil 5.3.1 binaries for Python 3.7 (and I suspect it's unlikely they will be provided, as it's an out of date version).

I created #196 to add Python 3.7 support (remove the pins, add Python 3.7 to CI).

pfmoore commented 5 years ago

Fixed by #196 which has now been merged.