Skip to content

Commit 56180d7

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

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

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

+1-2
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
@@ -58,7 +58,6 @@ jobs:
5858

5959
- name: Check dependencies
6060
run: poetry run deptry .
61-
if: ${{ matrix.python-version != '3.7' }}
6261

6362
- name: Upload coverage
6463
uses: codecov/codecov-action@v1

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-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ classifiers = [
3939
"Topic :: Software Development :: Libraries :: Python Modules",
4040
"Operating System :: OS Independent",
4141
"Programming Language :: Python :: 3",
42-
"Programming Language :: Python :: 3.7",
4342
"Programming Language :: Python :: 3.8",
4443
"Programming Language :: Python :: 3.9",
4544
"Programming Language :: Python :: 3.10",
@@ -51,7 +50,7 @@ include = [
5150
]
5251

5352
[tool.poetry.dependencies]
54-
python = "^3.7.0"
53+
python = "^3.8.0"
5554
jsonschema = ">=4.0.0,<4.18.0"
5655
rfc3339-validator = "*" # requred by jsonschema for date-time checker
5756

@@ -67,7 +66,7 @@ pytest-flake8 = "*"
6766
pytest-cov = "*"
6867
mypy = "^0.910"
6968
flynt = "^0.78"
70-
deptry = { version = "^0.11.0", python = ">=3.8" }
69+
deptry = "^0.11.0"
7170

7271
[tool.poetry.group.docs.dependencies]
7372
sphinx = "^5.3.0"

0 commit comments

Comments
 (0)