Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/End2EndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.8', '3.9', '3.10' ]
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions DESCRIPTION.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-inges

Release Notes
-------------------------------------------------------------------------------
- v1.0.11 (June 17, 2025)

- Better handling to retry connection errors
- Pin dependency package to newer version (snowflake-connector-python)

- v1.0.10 (November 14, 2024)

- Update readme for artifact validation using cosign
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from sys import version_info, exit
# Define our list of installation dependencies
DEPENDS = ["pyjwt",
"snowflake-connector-python>=3.0.3",
"snowflake-connector-python>=3.12.0",
"furl",
"cryptography",
"requests<=2.32.3"]
Expand Down
2 changes: 1 addition & 1 deletion snowflake/ingest/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
# Update this for the versions
__version__ = '1.0.10'
__version__ = '1.0.11'