From 87ff31bd3999cbbbdff729bb0e45df443f37ad12 Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Mon, 25 Mar 2024 13:30:03 -0400 Subject: [PATCH] fix: minimum is actually 3.7 --- .github/workflows/tests.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b856c483..fb1f856c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -87,7 +87,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.7" - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/pyproject.toml b/pyproject.toml index c4920c91..11428e00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ dynamic = ["version"] description = "Module for creating context-aware, rule-based G2P mappings that preserve indices" readme = "README.md" license = "MIT" -requires-python = ">= 3.8" +requires-python = ">= 3.7" authors = [ { name = "Aidan Pine", email = "hello@aidanpine.ca" }, ]