@rem@rem@remset CONDA_INSTALL=cmd /C conda install -q -y
set PIP_INSTALL=pip install -q
@echo on
@remcall deactivate
@remconda remove --all -q -y -n %VIRTUALENV%
conda create -n %VIRTUALENV% -q -y python=%PYTHON_VERSION%
call activate %VIRTUALENV%
python --version
pip --version
pip install scipy==1.4.1 pytest>=4.0.0 wheel>=0.31.1 hypothesis
curl -sSf -o rustup-init.exe https://win.rustup.rs
rustup-init.exe -y --default-toolchain nightly-2019-11-01
set PATH=%PATH%;%USERPROFILE%\.cargo\bin
echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin"
rustup set default-host x86_64-pc-windows-gnu
rustup default nightly-2020-06-01
@remcd python/
python -m pip install -r ..\ci\requirements-build.txt
python setup.py bdist_wheel
pip install pytest-faulthandler
@rempip install --pre --no-index --find-links dist\ vtext
if %errorlevel% neq 0 exit /b %errorlevel%