From 40d478257e220edf03854f9abefa949542106d52 Mon Sep 17 00:00:00 2001 From: Daniel Simmons-Ritchie <37225902+SimmonsRitchie@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:18:08 -0500 Subject: [PATCH] Require python 3.9 or higher --- .github/workflows/ci.yml | 2 +- pyproject.toml | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa9cb6f..7a185ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 2 matrix: - python-version: [3.11] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 79f0ed3..316809c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ license = { text = "MIT" } authors = [ { name = "City Bureau", email = "documenters@citybureau.org" } ] -requires-python = ">=3.6,<4.0" +requires-python = ">=3.9,<4.0" dependencies = [ "jsonschema>=3.0.0a5", "pytz", @@ -39,9 +39,6 @@ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python Programming Language :: Python :: 3 -Programming Language :: Python :: 3.6 -Programming Language :: Python :: 3.7 -Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11