Skip to content

Commit 93edec3

Browse files
committed
Drop support for python3.7
`referencing` does not support 3.7, which means that supporting 3.7 would start to require separate compatibility code precisely when it has just reached EOL (4 weeks ago at time of writing). Drop 3.7 and move the 'mindeps' builds to 3.8
1 parent eb42b36 commit 93edec3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
py: ["3.x"]
1212
include:
1313
- toxenv: py-mindeps
14-
py: "3.7"
14+
py: "3.8"
1515

1616
runs-on: ubuntu-latest
1717
name: "Run '${{ matrix.toxenv }}' on python ${{ matrix.py }}"
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
os: [ubuntu-latest, windows-latest, macos-latest]
43-
py: ['3.7', '3.8', '3.9', '3.10', '3.11']
43+
py: ['3.8', '3.9', '3.10', '3.11']
4444
name: "Run tests on ${{ matrix.os }}, py${{ matrix.py }}"
4545
runs-on: ${{ matrix.os }}
4646
steps:

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
envlist =
33
mypy
44
cov_clean
5-
py37-mindeps
6-
py{311,310,39,38,37}
5+
py38-mindeps
6+
py{311,310,39,38}
77
py310-{notoml,tomli-format}
8-
py{37,311}-{json5,pyjson5}
8+
py{38,311}-{json5,pyjson5}
99
cov
1010
skip_missing_interpreters = true
1111
minversion = 4.0.0
@@ -18,7 +18,7 @@ description = "run tests with pytest"
1818
usedevelop = true
1919
extras = dev
2020
deps =
21-
mindeps: jsonschema==4.5.1
21+
mindeps: jsonschema==4.18.0
2222
mindeps: click==8.0.0
2323
mindeps: requests==2.0.0
2424
mindeps: importlib-resources==1.4.0

0 commit comments

Comments
 (0)