From 70cf391cb9372a7c4dd01e98ea588613068097e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 04:52:26 +0000 Subject: [PATCH 1/3] Bump requests from 2.27.1 to 2.31.0 in /requirements Bumps [requests](https://github.com/psf/requests) from 2.27.1 to 2.31.0. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.27.1...v2.31.0) --- updated-dependencies: - dependency-name: requests dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/base.txt b/requirements/base.txt index 4b37ad8..4dc1226 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,2 +1,2 @@ -requests==2.27.1 +requests==2.31.0 SQLAlchemy==1.4.48 From fd1eb86921f6de0fee6b364fc8f3dfa617309ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Garc=C3=ADa=20Crespo?= Date: Fri, 13 Oct 2023 04:59:37 +0000 Subject: [PATCH 2/3] Bump vcrpy from 4.1.1 to 4.4.0 --- requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/local.txt b/requirements/local.txt index cae2dce..edf95cc 100644 --- a/requirements/local.txt +++ b/requirements/local.txt @@ -1,4 +1,4 @@ -r base.txt pytest==7.0.1 pytest-cov==4.0.0 -vcrpy==4.1.1 +vcrpy==4.4.0 From 4f65e6a60b14be39919b702fc062cbdbbf23c642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Garc=C3=ADa=20Crespo?= Date: Fri, 13 Oct 2023 05:04:35 +0000 Subject: [PATCH 3/3] Drop Python 3.6 --- .github/workflows/test.yml | 2 -- .pre-commit-config.yaml | 4 ++-- setup.py | 2 +- tox.ini | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55eba4e..d9d0b17 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,8 +12,6 @@ jobs: strategy: matrix: include: - - python-version: "3.6" - toxenv: "py36" - python-version: "3.7" toxenv: "py37" - python-version: "3.8" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index db6b571..6205d28 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,12 +3,12 @@ repos: rev: v2.31.0 hooks: - id: pyupgrade - args: [--py3-plus, --py36-plus] + args: [--py3-plus, --py37-plus] - repo: https://github.com/asottile/reorder_python_imports rev: v2.6.0 hooks: - id: reorder-python-imports - args: [--py3-plus, --py36-plus] + args: [--py3-plus, --py37-plus] - repo: https://github.com/ambv/black rev: 22.8.0 hooks: diff --git a/setup.py b/setup.py index 1300f4d..315c422 100644 --- a/setup.py +++ b/setup.py @@ -16,5 +16,5 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", ], - python_requires=">=3.6", + python_requires=">=3.7", ) diff --git a/tox.ini b/tox.ini index 9d8a475..aeaf672 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] skipsdist = True -envlist = py{36,37,38,39},linting +envlist = py{37,38,39},linting [testenv] skip_install = True