From 67316e4269109212794a149441a0a42bd1796932 Mon Sep 17 00:00:00 2001 From: Pierce Kelaita Date: Tue, 14 May 2024 00:20:49 -0700 Subject: [PATCH] bump minimum version down to 3.9 --- .github/workflows/tests.yml | 4 ++-- README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fc99300..551a366 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,14 +9,14 @@ on: env: default-python: "3.12" - minimum-supported-python: "3.11" + minimum-supported-python: "3.9" jobs: run-tests: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - name: Checkout code diff --git a/README.md b/README.md index 8d8dc07..0b071fd 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ L2M2 currently supports the following models: ## Requirements -- Python >= 3.11 +- Python >= 3.9 ## Installation diff --git a/pyproject.toml b/pyproject.toml index c988557..58f0e31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ urls.Issues = "https://github.com/pkelaita/l2m2/issues" readme = "README.md" license = { file = "LICENSE" } -requires-python = ">=3.11" +requires-python = ">=3.9" dynamic = ["dependencies", "version"]