Skip to content

Commit

Permalink
Pinned pstutil to address install error on PyPy
Browse files Browse the repository at this point in the history
Details:

* Pinned psutil to <=5.6.3 on PyPy to avoid an installation error
  (see giampaolo/psutil#1659)

Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
  • Loading branch information
andy-maier committed Nov 3, 2020
1 parent 1d499fa commit 9f778cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ tabulate >= 0.8.3

# Performance profiling tools
pyinstrument >=3.0.1
psutil>=5.0.0; sys_platform != 'cygwin'
psutil>=5.0.0; sys_platform != 'cygwin' and platform_python_implementation != 'PyPy'
psutil>=5.0.0,<=5.6.3; sys_platform != 'cygwin' and platform_python_implementation == 'PyPy'

# Indirect dependencies are not specified in this file unless constraints are needed.
2 changes: 2 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ Released: not yet
* Test: Changed dependency to 'typed-ast' to match the needs of 'astroid' and to
install it only on CPython. This allows re-enabling PyPy3 on Travis.

* Test: Pinned psutil to <=5.6.3 on PyPy2+3 to avoid an installation error.

**Enhancements:**

* Logging: Added a value 'off' for the log destination in the
Expand Down

0 comments on commit 9f778cf

Please sign in to comment.