From 478d922669e9cbc4c4cc629b2621c42f0b564e73 Mon Sep 17 00:00:00 2001 From: Jay Paul Morgan Date: Tue, 9 Apr 2024 10:56:15 +0100 Subject: [PATCH] Only test python 9 and above --- .github/workflows/python-test.yml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index ff7519f..589cd33 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.9", "3.10", "3.11", "3.12"] + python-version: [3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-vesion }} diff --git a/setup.cfg b/setup.cfg index 716d658..ccd14a6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,7 +14,7 @@ package_dir = install_requires = tqdm>=4.62 pandas==1.* -python_requires = >=3.6 +python_requires = >=3.9 [options.packages.find] where = src