Skip to content

Commit

Permalink
Bleh ok, 3.8+ for now.
Browse files Browse the repository at this point in the history
referencing doesn't support 3.7, though jsonschema needs it.

TBD on what I'll do there, for now just 3.8+.
  • Loading branch information
Julian committed Dec 28, 2022
1 parent cf4da26 commit 879f896
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def _session(fn):
return _session


@session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"])
@session(python=["3.8", "3.9", "3.10", "3.11", "pypy3"])
def tests(session):
session.install("pytest", ROOT)
session.run("pytest", "--verbosity=3")
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source = "vcs"
name = "jsonschema-specifications"
description = "Support files exposing JSON from the JSON Schema specifications"
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = {text = "MIT"}
keywords = ["jsonschema", "json", "data", "validation"]
authors = [
Expand All @@ -21,7 +21,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 879f896

Please sign in to comment.