Skip to content

Commit

Permalink
chore: Add support for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Apr 12, 2024
1 parent e504130 commit 8abc44d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "<3.12,>=3.8"
python = ">=3.8"
singer-sdk = { version="^0.23.0" }
fs-s3fs = { version = "^1.1.1", optional = true }
boto3 = "^1.26.108"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ commands =
[testenv:pytest]
# Run the python tests.
# To execute, run `tox -e pytest`
envlist = py38, py39, py310, py311
envlist = py38, py39, py310, py311, py312
commands =
poetry install -v
poetry run coverage run -m pytest --capture=no {posargs}
Expand Down

0 comments on commit 8abc44d

Please sign in to comment.