From 5df565388479d5daa0c03f6d0a26064ef4d1bd00 Mon Sep 17 00:00:00 2001 From: Prithvi Kannan Date: Tue, 22 Oct 2024 13:55:59 -0700 Subject: [PATCH 1/2] Update pyproject min python to 3.9 Signed-off-by: Prithvi Kannan --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6e76c92..775d184 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = [ { name="Prithvi Kannan", email="prithvi.kannan@databricks.com" }, ] readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.8" dependencies = [ "typing_extensions", "pydantic" From 504dcb365761b3395c8af84b35e4d679023fa12c Mon Sep 17 00:00:00 2001 From: Prithvi Kannan Date: Tue, 22 Oct 2024 14:02:41 -0700 Subject: [PATCH 2/2] fix Signed-off-by: Prithvi Kannan --- .github/workflows/main.yml | 4 ++-- src/__init__.py | 0 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 src/__init__.py diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a5afbb9..91ebd2e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.9' + python-version: '3.8' - name: Install dependencies run: | pip install -r requirements/lint-requirements.txt @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10'] timeout-minutes: 20 steps: - name: Checkout code diff --git a/src/__init__.py b/src/__init__.py deleted file mode 100644 index e69de29..0000000