mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
* Fix fabfile
This commit is contained in:
parent
0e4c2ba036
commit
d40f9f76a9
7
fabfile.py
vendored
7
fabfile.py
vendored
|
@ -14,9 +14,6 @@ def sdist():
|
||||||
local('rm -rf dist/')
|
local('rm -rf dist/')
|
||||||
local('mkdir dist')
|
local('mkdir dist')
|
||||||
with virtualenv(VENV_DIR):
|
with virtualenv(VENV_DIR):
|
||||||
local('pip install --upgrade setuptools')
|
|
||||||
local('pip install murmurhash')
|
|
||||||
local('pip install numpy')
|
|
||||||
local('python setup.py sdist')
|
local('python setup.py sdist')
|
||||||
|
|
||||||
|
|
||||||
|
@ -30,6 +27,10 @@ def setup():
|
||||||
if file_exists('.env'):
|
if file_exists('.env'):
|
||||||
local('rm -rf .env')
|
local('rm -rf .env')
|
||||||
local('virtualenv .env')
|
local('virtualenv .env')
|
||||||
|
with virtualenv(VENV_DIR):
|
||||||
|
local('pip install --upgrade setuptools')
|
||||||
|
local('pip install murmurhash')
|
||||||
|
local('pip install numpy')
|
||||||
|
|
||||||
|
|
||||||
def install():
|
def install():
|
||||||
|
|
Loading…
Reference in New Issue
Block a user