mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +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('mkdir dist')
|
||||
with virtualenv(VENV_DIR):
|
||||
local('pip install --upgrade setuptools')
|
||||
local('pip install murmurhash')
|
||||
local('pip install numpy')
|
||||
local('python setup.py sdist')
|
||||
|
||||
|
||||
|
@ -30,6 +27,10 @@ def setup():
|
|||
if file_exists('.env'):
|
||||
local('rm -rf .env')
|
||||
local('virtualenv .env')
|
||||
with virtualenv(VENV_DIR):
|
||||
local('pip install --upgrade setuptools')
|
||||
local('pip install murmurhash')
|
||||
local('pip install numpy')
|
||||
|
||||
|
||||
def install():
|
||||
|
|
Loading…
Reference in New Issue
Block a user