From aa0ae151ec782631bedd27ea822d50baf3a4740c Mon Sep 17 00:00:00 2001 From: p1c2u Date: Mon, 12 Jun 2023 10:48:28 +0100 Subject: [PATCH] drop python 3.7 support --- .github/workflows/python-test.yml | 2 +- .travis.yml | 1 - pyproject.toml | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index a98ed97..0fe5582 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] fail-fast: false steps: - uses: actions/checkout@v2 diff --git a/.travis.yml b/.travis.yml index 0715f19..8ad2ab2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python sudo: false matrix: include: - - python: 3.7 - python: 3.8 - python: 3.9 - python: nightly diff --git a/pyproject.toml b/pyproject.toml index 20681a0..26553bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ include = [ ] [tool.poetry.dependencies] -python = "^3.7.0" +python = "^3.8.0" jsonschema = ">=4.0.0,<4.18.0" rfc3339-validator = "*" # requred by jsonschema for date-time checker @@ -67,7 +67,7 @@ pytest-flake8 = "*" pytest-cov = "*" mypy = "^0.910" flynt = "^0.78" -deptry = { version = "^0.11.0", python = ">=3.8" } +deptry = "^0.11.0" [tool.poetry.group.docs.dependencies] sphinx = "^5.3.0"