summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-12-19 14:42:02 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2020-12-19 14:42:02 +0100
commitadf5aa0ab0a6e91a8e3cd659d5b91a5dcdee1b4a (patch)
treee618be94ada77ce19594f90e338d09a066c22b6f
parent2c1189553d2fae85262ac93f9ba498f445536394 (diff)
downloadpsutil-adf5aa0ab0a6e91a8e3cd659d5b91a5dcdee1b4a.tar.gz
add awaiting-response bot
Signed-off-by: Giampaolo Rodola <g.rodola@gmail.com>
-rw-r--r--.github/no-response.yml10
-rw-r--r--INSTALL.rst11
2 files changed, 15 insertions, 6 deletions
diff --git a/.github/no-response.yml b/.github/no-response.yml
new file mode 100644
index 00000000..e5afde07
--- /dev/null
+++ b/.github/no-response.yml
@@ -0,0 +1,10 @@
+# Configuration for probot-no-response: https://github.com/probot/no-response
+
+# Number of days of inactivity before an issue is closed for lack of response
+daysUntilClose: 14
+# Label requiring a response
+responseRequiredLabel: awaiting-response
+# Comment to post when closing an Issue for lack of response.
+# Set to `false` to disable
+closeComment: >
+ This issue has been automatically closed because there has been no response for more information from the original author. Please reach out if you have or find the answers requested so that this can be investigated further.
diff --git a/INSTALL.rst b/INSTALL.rst
index 5d4a87ae..22693b56 100644
--- a/INSTALL.rst
+++ b/INSTALL.rst
@@ -7,9 +7,8 @@ Linux, Windows, macOS (wheels)
Pre-compiled wheels are distributed for these platforms, so you won't have to
install a C compiler. All you have to do is::
- pip install --user psutil
+ pip install psutil
-This (``--user``) will install psutil as a limited user (not system-wide).
If wheels are not available for your platform or architecture, or you whish to
build & install psutil from sources, keep reading.
@@ -19,12 +18,12 @@ Linux (build)
Ubuntu / Debian::
sudo apt-get install gcc python3-dev
- pip install --user --no-binary :all: psutil
+ pip install --no-binary :all: psutil
RedHat / CentOS::
sudo yum install gcc python3-devel
- pip install --user --no-binary :all: psutil
+ pip install --no-binary :all: psutil
Windows (build)
---------------
@@ -35,14 +34,14 @@ Here's a couple of guides describing how to do it: `link <https://blog.ionelmc.r
and `link <https://cpython-core-tutorial.readthedocs.io/en/latest/build_cpython_windows.html>`__.
Once VS is installed do::
- pip install --user --no-binary :all: psutil
+ pip install --no-binary :all: psutil
macOS (build)
-------------
Install `Xcode <https://developer.apple.com/downloads/?name=Xcode>`__ then run::
- pip install --user --no-binary :all: psutil
+ pip install --no-binary :all: psutil
FreeBSD
-------