diff --git a/ci/requirements-minimal.yml b/ci/requirements-minimal.yml index e56fe74..fa180c4 100644 --- a/ci/requirements-minimal.yml +++ b/ci/requirements-minimal.yml @@ -6,4 +6,4 @@ dependencies: - pytest - pytest-cov - packaging - - psutil=5.4 + - psutil=5.6 diff --git a/doc/installing.rst b/doc/installing.rst index a6afa4d..b24f147 100644 --- a/doc/installing.rst +++ b/doc/installing.rst @@ -7,7 +7,7 @@ Required dependencies --------------------- - Python 3.8 or later -- `psutil `_ 5.4 or later +- `psutil `_ 5.6 or later Deployment ---------- diff --git a/doc/whats-new.rst b/doc/whats-new.rst index ffd435e..e10b451 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -8,6 +8,7 @@ What's New v1.4.0 (unreleased) ------------------- - Added formal support for Python 3.11 and 3.12 (the previous version works fine though) +- Bumped minimum version of psutil from 5.4 to 5.6 .. _whats-new.1.3.0: diff --git a/pyproject.toml b/pyproject.toml index 56307be..6b0b739 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ ] urls = {Homepage = "https://github.com/crusaderky/pshell"} requires-python = ">=3.8" -dependencies = ["psutil >= 5.4"] +dependencies = ["psutil >= 5.6"] dynamic = ["version"] [tool.setuptools]