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/
7
7
Source code is also available at: https://github.com/snowflakedb/snowflake-connector-python
8
8
9
9
# Release Notes
10
- - v3.16.1 (TBD)
10
+ - v3.17 (TBD)
11
11
- Added new authentication methods support for Workload Identity Federation (WIF).
12
12
- Added the ` WORKLOAD_IDENTITY ` value for authenticator type.
13
13
- 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
23
23
- Moved ` OAUTH_TYPE ` to ` CLIENT_ENVIROMENT ` .
24
24
- Fix bug where PAT with external session authenticator was used while ` external_session_id ` was not provided in ` SnowflakeRestful.fetch `
25
25
- Added support for parameter ` use_vectorized_scanner ` in function ` write_pandas ` .
26
+ - Relaxed ` pyarrow ` version constraint, versions >= 19 can now be used.
26
27
- Populate type_code in ResultMetadata for interval types.
27
28
28
29
- v3.16.0(July 04,2025)
Original file line number Diff line number Diff line change @@ -36,12 +36,18 @@ EXIT /B %ERRORLEVEL%
36
36
set pv = %~1
37
37
38
38
echo 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
40
40
if %errorlevel% neq 0 goto :error
41
41
42
- py -%pv% -m build --wheel .
42
+ py -%pv% -m build --outdir dist\rawwheel -- wheel .
43
43
if %errorlevel% neq 0 goto :error
44
44
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
+
45
51
EXIT /B 0
46
52
47
53
:error
Original file line number Diff line number Diff line change @@ -94,6 +94,6 @@ development =
94
94
pytzdata
95
95
pandas =
96
96
pandas>=2.1.2,<3.0.0
97
- pyarrow<19.0.0
97
+ pyarrow
98
98
secure-local-storage =
99
99
keyring>=23.1.0,<26.0.0
You can’t perform that action at this time.
0 commit comments