From 410cea71f1f1821466858aa518e8dd12b6a92178 Mon Sep 17 00:00:00 2001 From: herostrat Date: Fri, 18 Nov 2022 13:33:10 +0100 Subject: [PATCH] Easy Python Updates (#4424) * Update black requirement from ==22.3.* to ==22.10.* Updates the requirements on [black](https://github.com/psf/black) to permit the latest version. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/22.3.0...22.10.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:development ... Signed-off-by: dependabot[bot] * Update pylint requirement from ==2.13.* to ==2.15.* Updates the requirements on [pylint](https://github.com/PyCQA/pylint) to permit the latest version. - [Release notes](https://github.com/PyCQA/pylint/releases) - [Commits](https://github.com/PyCQA/pylint/compare/v2.13.0...v2.15.5) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:development ... Signed-off-by: dependabot[bot] * Update types-requests requirement from ==2.27.* to ==2.28.* Updates the requirements on [types-requests](https://github.com/python/typeshed) to permit the latest version. - [Release notes](https://github.com/python/typeshed/releases) - [Commits](https://github.com/python/typeshed/commits) --- updated-dependencies: - dependency-name: types-requests dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Update pyyaml requirement from ==6.0.* to ==6.0 Updates the requirements on [pyyaml](https://github.com/yaml/pyyaml) to permit the latest version. - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES) - [Commits](https://github.com/yaml/pyyaml/compare/6.0b1...6.0) --- updated-dependencies: - dependency-name: pyyaml dependency-type: direct:production ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements-dev.txt | 4 ++-- requirements-wheels.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 5cba885d9..dbc8f87f4 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,2 +1,2 @@ -pylint == 2.13.* -black == 22.3.* +pylint == 2.15.* +black == 22.10.* diff --git a/requirements-wheels.txt b/requirements-wheels.txt index 2dd2356cc..7df0be770 100644 --- a/requirements-wheels.txt +++ b/requirements-wheels.txt @@ -10,10 +10,10 @@ peewee == 3.14.* peewee_migrate == 1.4.* psutil == 5.9.* pydantic == 1.9.* -PyYAML == 6.0.* +PyYAML == 6.0 types-PyYAML == 6.0.* requests == 2.27.* -types-requests == 2.27.* +types-requests == 2.28.* scipy == 1.8.* setproctitle == 1.2.* ws4py == 0.5.*