Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
Signed-off-by: Giampaolo Rodola <[email protected]>
  • Loading branch information
giampaolo committed Apr 16, 2022
1 parent 6ab8a54 commit 51cd847
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ check-imports: ## Run isort linter.
check-c-code: ## Run C linter.
@git ls-files '*.c' '*.h' | xargs $(PYTHON) scripts/internal/clinter.py

lint: ## Run all linters
check-all: ## Run all linters
${MAKE} check-flake8
${MAKE} check-imports
${MAKE} check-c-code
Expand All @@ -213,6 +213,10 @@ fix-flake8: ## Run autopep8, fix some Python flake8 / pep8 issues.
fix-imports: ## Fix imports with isort.
@git ls-files '*.py' | xargs $(PYTHON) -m isort --settings=.isort.cfg

fix-all:
${MAKE} fix-flake8
${MAKE} fix-imports

# ===================================================================
# GIT
# ===================================================================
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2597,6 +2597,7 @@ If you want to develop psutil take a look at the `development guide`_.
Platforms support history
=========================

* psutil 5.9.1 (2022-XX): drop Python 2.6 support
* psutil 5.9.0 (2021-12): **MidnightBSD**
* psutil 5.8.0 (2020-12): **PyPy 2** on Windows
* psutil 5.7.1 (2020-07): **Windows Nano**
Expand Down

0 comments on commit 51cd847

Please sign in to comment.