Skip to content

Commit 879f896

Browse files
committed
Bleh ok, 3.8+ for now.
referencing doesn't support 3.7, though jsonschema needs it. TBD on what I'll do there, for now just 3.8+.
1 parent cf4da26 commit 879f896

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _session(fn):
2020
return _session
2121

2222

23-
@session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"])
23+
@session(python=["3.8", "3.9", "3.10", "3.11", "pypy3"])
2424
def tests(session):
2525
session.install("pytest", ROOT)
2626
session.run("pytest", "--verbosity=3")

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ source = "vcs"
99
name = "jsonschema-specifications"
1010
description = "Support files exposing JSON from the JSON Schema specifications"
1111
readme = "README.rst"
12-
requires-python = ">=3.7"
12+
requires-python = ">=3.8"
1313
license = {text = "MIT"}
1414
keywords = ["jsonschema", "json", "data", "validation"]
1515
authors = [
@@ -21,7 +21,6 @@ classifiers = [
2121
"Operating System :: OS Independent",
2222
"Programming Language :: Python",
2323
"License :: OSI Approved :: MIT License",
24-
"Programming Language :: Python :: 3.7",
2524
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)