Skip to content

Commit

Permalink
chore: Test with Python 3.12 (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jul 3, 2024
1 parent 1ee1a46 commit 3249b86
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 54 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@v4
Expand Down
63 changes: 13 additions & 50 deletions poetry.lock

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

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ packages = [
[tool.poetry.dependencies]
python = ">=3.8"
cryptography = ">=40,<43"
numpy = "<2"
singer-sdk = "~=0.38.0"
snowflake-sqlalchemy = "~=1.5.1"
snowflake-connector-python = { version = "<4.0.0", extras = ["secure-local-storage"] }
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file can be used to customize tox tests as well as other test frameworks like flake8 and mypy

[tox]
envlist = py37, py38, py39, py310, py311
envlist = py3{8,9,10,11,12}
isolated_build = true


Expand All @@ -22,7 +22,7 @@ commands =
[testenv:pytest]
# Run the python tests.
# To execute, run `tox -e pytest`
envlist = py37, py38, py39, py310, py311
envlist = py3{8,9,10,11,12}
commands =
poetry install -v
poetry run coverage run -m pytest --capture=no {posargs}
Expand Down

0 comments on commit 3249b86

Please sign in to comment.