Skip to content

Commit f41b66d

Browse files
feat: Add support for Python 3.12 (#269)
1 parent cc62fe6 commit f41b66d

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/test_tap.yml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
python-version:
34+
- "3.12"
3435
- "3.11"
3536
- "3.10"
3637
- "3.9"

poetry.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ classifiers = [
2525

2626
[tool.poetry.dependencies]
2727
PyJWT = "2.8.0"
28-
python = ">=3.8,<3.12"
28+
python = ">=3.8"
2929
requests = "~=2.32.3"
3030
# For local SDK dev:
3131
# singer-sdk = {path = "../singer-sdk", develop = true}
32-
singer-sdk = "~=0.32.0"
32+
singer-sdk = { version = "~=0.32.0", python = "<4" }
3333
types-simplejson = "~=3.19.0"
3434
types-python-dateutil = "~=2.9.0"
3535
nested-lookup = "~=0.2.25"

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
isolated_build = true
3-
envlist = py36, py38, py39
3+
envlist = py3{8,9,10,11,12}
44

55
[testenv]
66
whitelist_externals = poetry

0 commit comments

Comments
 (0)