Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.9'
- name: Upgrade and install tools
run: |
python -m pip install -U uv
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Setup up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.9'
- name: Upgrade and install tools
run: |
python -m pip install -U uv
Expand All @@ -85,7 +85,7 @@ jobs:
macos-13,
windows-latest,
]
python-version: ["3.8"]
python-version: ["3.9"]
cloud-provider: [
aws,
azure,
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
macos-13,
windows-latest,
]
python-version: ["3.8"]
python-version: ["3.9"]
cloud-provider: [
aws,
azure,
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
macos-13,
windows-latest,
]
python-version: ["3.8"]
python-version: ["3.9"]
cloud-provider: [
aws,
azure,
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
macos-13,
windows-latest,
]
python-version: ["3.8"]
python-version: ["3.9"]
cloud-provider: [
aws,
azure,
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.9"
- name: Prepare environment
run: |
python -m pip install -U uv
Expand Down
5 changes: 4 additions & 1 deletion DESCRIPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ Snowflake Documentation is available at:

Source code is also available at:
<https://github.com/snowflakedb/snowflake-sqlalchemy>
# Unreleased Notes

# Release Notes
- v1.8.0(TBD)
- Drop support for python 3.8
- Add support for python 3.13

- v1.7.6(July 10, 2025)
- Fix get_multi_indexes issue, wrong assign of returned indexes when processing multiple indexes in a table

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: SQL",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
Expand Down Expand Up @@ -79,13 +79,13 @@ path = ".venv"
type = "virtual"
extra-dependencies = ["SQLAlchemy>=1.4.19,<2.1.0"]
features = ["development", "pandas"]
python = "3.8"
python = "3.9"
installer = "uv"

[tool.hatch.envs.sa14]
extra-dependencies = ["SQLAlchemy>=1.4.19,<2.0.0"]
features = ["development", "pandas"]
python = "3.8"
python = "3.9"

[tool.hatch.envs.sa14.scripts]
test-dialect = "pytest --ignore_v20_test -ra -vvv --tb=short --cov snowflake.sqlalchemy --cov-append --junitxml ./junit.xml --ignore=tests/sqlalchemy_test_suite tests/"
Expand All @@ -105,7 +105,7 @@ gh-cache-sum = "python -VV | sha256sum | cut -d' ' -f1"
check-import = "python -c 'import snowflake.sqlalchemy; print(snowflake.sqlalchemy.__version__)'"

[[tool.hatch.envs.release.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
features = ["development", "pandas"]

[tool.hatch.envs.release.scripts]
Expand Down
Loading