From 782d4d02a61f029dfface12933b0040dd17e8c77 Mon Sep 17 00:00:00 2001 From: William Patton Date: Wed, 9 Oct 2024 10:10:50 -0700 Subject: [PATCH] better python version dependencies and testing --- .github/workflows/test_py.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_py.yaml b/.github/workflows/test_py.yaml index 675fe8d..8d562dc 100644 --- a/.github/workflows/test_py.yaml +++ b/.github/workflows/test_py.yaml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index 5a43e24..20eb3fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ version = "0.5.1" description = "A rusty mutex watershed" readme = "README.md" -requires-python = ">=3.11" +requires-python = ">=3.9" classifiers = [ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers',