Skip to content

Commit aa0ae15

Browse files
committed
drop python 3.7 support
1 parent 563fea0 commit aa0ae15

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Diff for: .github/workflows/python-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
17+
python-version: ['3.8', '3.9', '3.10', '3.11']
1818
fail-fast: false
1919
steps:
2020
- uses: actions/checkout@v2

Diff for: .travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: python
22
sudo: false
33
matrix:
44
include:
5-
- python: 3.7
65
- python: 3.8
76
- python: 3.9
87
- python: nightly

Diff for: pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ include = [
5151
]
5252

5353
[tool.poetry.dependencies]
54-
python = "^3.7.0"
54+
python = "^3.8.0"
5555
jsonschema = ">=4.0.0,<4.18.0"
5656
rfc3339-validator = "*" # requred by jsonschema for date-time checker
5757

@@ -67,7 +67,7 @@ pytest-flake8 = "*"
6767
pytest-cov = "*"
6868
mypy = "^0.910"
6969
flynt = "^0.78"
70-
deptry = { version = "^0.11.0", python = ">=3.8" }
70+
deptry = "^0.11.0"
7171

7272
[tool.poetry.group.docs.dependencies]
7373
sphinx = "^5.3.0"

0 commit comments

Comments
 (0)