Skip to content

Commit

Permalink
feat: Add support for Python 3.12 (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jul 5, 2024
1 parent cc62fe6 commit f41b66d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test_tap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
strategy:
matrix:
python-version:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ classifiers = [

[tool.poetry.dependencies]
PyJWT = "2.8.0"
python = ">=3.8,<3.12"
python = ">=3.8"
requests = "~=2.32.3"
# For local SDK dev:
# singer-sdk = {path = "../singer-sdk", develop = true}
singer-sdk = "~=0.32.0"
singer-sdk = { version = "~=0.32.0", python = "<4" }
types-simplejson = "~=3.19.0"
types-python-dateutil = "~=2.9.0"
nested-lookup = "~=0.2.25"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
isolated_build = true
envlist = py36, py38, py39
envlist = py3{8,9,10,11,12}

[testenv]
whitelist_externals = poetry
Expand Down

0 comments on commit f41b66d

Please sign in to comment.