This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 76dbabe ci: fix DLL names in build script (#689)
76dbabe is described below
commit 76dbabe1103a043a671c8cec7e3631fe9b0050f3
Author: David Li <[email protected]>
AuthorDate: Wed May 17 15:21:29 2023 -0400
ci: fix DLL names in build script (#689)
Fixes #688.
---
ci/scripts/python_wheel_windows_build.bat | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ci/scripts/python_wheel_windows_build.bat
b/ci/scripts/python_wheel_windows_build.bat
index 8a489cd..b8c3998 100644
--- a/ci/scripts/python_wheel_windows_build.bat
+++ b/ci/scripts/python_wheel_windows_build.bat
@@ -61,10 +61,10 @@ cmake ^
cmake --build . --config %CMAKE_BUILD_TYPE% --target install --verbose -j ||
exit /B 1
-set ADBC_FLIGHTSQL_LIBRARY=%build_dir%\bin\adbc_driver_flightsql.dll.4.0.0
+set ADBC_FLIGHTSQL_LIBRARY=%build_dir%\bin\adbc_driver_flightsql.dll.5.0.0
set ADBC_POSTGRESQL_LIBRARY=%build_dir%\bin\adbc_driver_postgresql.dll
set ADBC_SQLITE_LIBRARY=%build_dir%\bin\adbc_driver_sqlite.dll
-set ADBC_SNOWFLAKE_LIBRARY=%build_dir%\bin\adbc_driver_snowflake.dll.4.0.0
+set ADBC_SNOWFLAKE_LIBRARY=%build_dir%\bin\adbc_driver_snowflake.dll.5.0.0
popd