From e79650e6a903226dc78765c9dee614890d4ca9b4 Mon Sep 17 00:00:00 2001 From: Derek Visch Date: Fri, 23 Aug 2024 15:00:47 -0400 Subject: [PATCH] python upgrade --- .github/workflows/main_test.yml | 2 +- .github/workflows/s3_test.yml | 4 ++-- .github/workflows/test.yml | 3 +++ pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main_test.yml b/.github/workflows/main_test.yml index b7e4336..6f71df1 100644 --- a/.github/workflows/main_test.yml +++ b/.github/workflows/main_test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] env: AWS_ACCESS_KEY_ID: AKIAZPOBIXUJJ434XT5T AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/s3_test.yml b/.github/workflows/s3_test.yml index 6c01749..acebcca 100644 --- a/.github/workflows/s3_test.yml +++ b/.github/workflows/s3_test.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] env: AWS_ACCESS_KEY_ID: AKIAZPOBIXUJJ434XT5T AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} @@ -41,4 +41,4 @@ jobs: poetry install --extras=s3 - name: Test with pytest (requires repo secrets) run: | # Only run S3 tests, i.e. those that weren't already covered by the standard workflow run. - poetry run pytest -k 'test_s3_execution' \ No newline at end of file + poetry run pytest -k 'test_s3_execution' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5638535..882081c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,6 +17,9 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" + - "3.13" + - "3.14" env: AWS_ACCESS_KEY_ID: NoSecretsNeeded AWS_SECRET_ACCESS_KEY: NoSecretsNeeded diff --git a/pyproject.toml b/pyproject.toml index a1954c2..69b9ad5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ keywords = [ license = "Apache-2.0" [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = ">=3.8,<3.15" singer-sdk = { version="~=0.39.0" } fsspec = "~=2024.6.1" s3fs = { version = "~=2024.6.1", optional = true}