From 08bc87893b4aaae2d3d9d55ce2252a0a1db03a61 Mon Sep 17 00:00:00 2001 From: Calvin Che Date: Wed, 18 Sep 2024 04:11:28 +0800 Subject: [PATCH] Add Python 3.8 as min required version --- .github/workflows/lint-format-check.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-format-check.yml b/.github/workflows/lint-format-check.yml index c0fd669..93651b1 100644 --- a/.github/workflows/lint-format-check.yml +++ b/.github/workflows/lint-format-check.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - name: Checkout diff --git a/pyproject.toml b/pyproject.toml index 7e08d4f..506b22d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "synnax-lab-sdk" description = "Synnax Lab SDK for downloading training data and uploading predictions" readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.8" keywords = ["synnax"] dependencies = ["requests", "tqdm", "inflect", "python-dateutil"] dynamic = ["version"]