File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ nuget install secure-file -ExcludeVersion
22secure-file\tools\secure-file -decrypt parameters.appveyor.py.enc -secret %my_secret% -out parameters.py
33copy parameters.py test
44
5+ SET SCRIPT_DIR = %~dp0
6+
57" %PYTHON% /python.exe" -m venv env
68call env\Scripts\activate
79# https://github.com/pypa/pip/issues/6566
@@ -11,5 +13,16 @@ pip install numpy
1113pip install pendulum
1214pip install pyarrow
1315pip install pytest pytest-cov pytest-rerunfailures
14- pip install .
16+ pip install wheel
17+ pip install Cython
18+ set ENABLE_EXT_MODULES = true
19+ python setup.py bdist_wheel -d dist
20+
21+ :: figure out connector wheel file name
22+ cd dist
23+ dir /b * > whl_name
24+ set /p connector_whl = < whl_name
25+ pip install %connector_whl%
1526pip list --format=columns
27+
28+ cd %SCRIPT_DIR% /..
You can’t perform that action at this time.
0 commit comments