mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
17 lines
364 B
PowerShell
17 lines
364 B
PowerShell
param (
|
|
[string]$python = $(throw "-python is required."),
|
|
[string]$install_mode = $(throw "-install_mode is required."),
|
|
[string]$pip_date
|
|
)
|
|
|
|
if(!(Test-Path -Path ".build"))
|
|
{
|
|
virtualenv .build --python $python
|
|
}
|
|
.build\Scripts\activate.ps1
|
|
|
|
python build.py prepare $pip_date
|
|
python build.py $install_mode
|
|
python build.py test
|
|
exit $LASTEXITCODE
|