Skip to content

Commit

Permalink
python upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
visch committed Aug 23, 2024
1 parent 1297d1b commit e79650e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/s3_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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'
poetry run pytest -k 'test_s3_execution'
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit e79650e

Please sign in to comment.