From 4af3cdca8c0f875a631b2eea61f6a25a1470efec Mon Sep 17 00:00:00 2001 From: James Clark <70290797+jamesclark-Zapata@users.noreply.github.com> Date: Mon, 16 Oct 2023 15:52:05 +0100 Subject: [PATCH] chore: Remove Python 3.11 upper bound (#85) --- .github/workflows/coverage.yml | 2 +- .github/workflows/style.yml | 2 +- setup.cfg | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index bca9e27..4da5795 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -22,7 +22,7 @@ jobs: # Run jobs for a couple of Python versions. strategy: matrix: - python: ["3.8", "3.9", "3.10"] + python: ["3.9", "3.10", "3.11"] name: TestCoverage - Python ${{ matrix.python }} diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index e7cf0b2..ef1db65 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -22,7 +22,7 @@ jobs: # Run jobs for a couple of Python versions. strategy: matrix: - python: ["3.8", "3.9", "3.10"] + python: ["3.9", "3.10", "3.11"] name: Style - Python ${{ matrix.python }} diff --git a/setup.cfg b/setup.cfg index a368ec2..afd7de7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,7 +21,7 @@ include_package_data = True package_dir = = src packages = find_namespace: -python_requires = >=3.8,!=3.9.7,<3.11 +python_requires = >=3.9,!=3.9.7 install_requires = numpy>=1.20