From bb5dfabc1e6a5dd44633cdd6e9d1cc73b9537c09 Mon Sep 17 00:00:00 2001 From: "Keto D. Zhang" Date: Tue, 28 Mar 2023 14:47:31 -0700 Subject: [PATCH] Bump min Python version to 3.9 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7285915..af797c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "asdf-pydantic" description = 'Create ASDF tags with pydantic models' readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" license-files = {paths = ["LICENSE"]} keywords = [] authors = [ @@ -15,7 +15,6 @@ authors = [ classifiers = [ "Development Status :: 4 - Beta", "Programming Language :: Python", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -41,6 +40,7 @@ path = "asdf_pydantic/__version__.py" # Default Environment [tool.hatch.envs.default] +python = "3.9" dependencies = [ "ipython", "pytest",