From 305d42bb7156e2d37477b6335de22aae8342559c Mon Sep 17 00:00:00 2001 From: Wilson Beebe Date: Fri, 26 Apr 2024 13:34:38 -0700 Subject: [PATCH] Prevent python 3.11.9 --- .github/workflows/testing-and-coverage.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing-and-coverage.yml b/.github/workflows/testing-and-coverage.yml index 174d6d34..d00dbb5d 100644 --- a/.github/workflows/testing-and-coverage.yml +++ b/.github/workflows/testing-and-coverage.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11.8'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 9530f5ab..f0c79354 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ classifiers = [ "Programming Language :: Python", ] dynamic=["version"] -requires-python = ">=3.9" +requires-python = ">=3.9,<3.11.9" dependencies = [ 'pandas', 'numpy',