File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ https://docs.snowflake.com/
77Source code is also available at: https://github.com/snowflakedb/snowflake-connector-python
88
99# Release Notes
10- - v3.16.1 (TBD)
10+ - v3.17 (TBD)
1111 - Added new authentication methods support for Workload Identity Federation (WIF).
1212 - Added the ` WORKLOAD_IDENTITY ` value for authenticator type.
1313 - Added the ` workload_identity_provider ` and ` workload_identity_entra_resource ` parameters.
@@ -23,6 +23,7 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
2323 - Moved ` OAUTH_TYPE ` to ` CLIENT_ENVIROMENT ` .
2424 - Fix bug where PAT with external session authenticator was used while ` external_session_id ` was not provided in ` SnowflakeRestful.fetch `
2525 - Added support for parameter ` use_vectorized_scanner ` in function ` write_pandas ` .
26+ - Relaxed ` pyarrow ` version constraint, versions >= 19 can now be used.
2627 - Populate type_code in ResultMetadata for interval types.
2728
2829- v3.16.0(July 04,2025)
Original file line number Diff line number Diff line change @@ -36,12 +36,18 @@ EXIT /B %ERRORLEVEL%
3636set pv = %~1
3737
3838echo Going to compile wheel for Python %pv%
39- py -%pv% -m pip install --upgrade pip setuptools wheel build
39+ py -%pv% -m pip install --upgrade pip setuptools wheel build delvewheel
4040if %errorlevel% neq 0 goto :error
4141
42- py -%pv% -m build --wheel .
42+ py -%pv% -m build --outdir dist\rawwheel -- wheel .
4343if %errorlevel% neq 0 goto :error
4444
45+ :: patch the wheel by including its dependencies
46+ py -%pv% -m delvewheel repair -vv -w dist dist\rawwheel\*
47+ if %errorlevel% neq 0 goto :error
48+
49+ rd /s /q dist\rawwheel
50+
4551EXIT /B 0
4652
4753:error
Original file line number Diff line number Diff line change @@ -94,6 +94,6 @@ development =
9494 pytzdata
9595pandas =
9696 pandas>=2.1.2,<3.0.0
97- pyarrow<19.0.0
97+ pyarrow
9898secure-local-storage =
9999 keyring>=23.1.0,<26.0.0
You can’t perform that action at this time.
0 commit comments