From 879f8964870770d06752cf1cc543ebf88e8fa2a1 Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Tue, 27 Dec 2022 19:55:29 -0500 Subject: [PATCH] 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+. --- noxfile.py | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/noxfile.py b/noxfile.py index 4ec257e..b48535b 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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") diff --git a/pyproject.toml b/pyproject.toml index 69ced47..25a807b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ @@ -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",