* Inc versions

This commit is contained in:
Matthew Honnibal 2015-06-30 18:10:37 +02:00
parent d2eeba6667
commit 5d595b5a8c
3 changed files with 4 additions and 9 deletions

View File

@ -2,7 +2,7 @@ cython
cymem == 1.11 cymem == 1.11
pathlib pathlib
preshed == 0.37 preshed == 0.37
thinc == 3.0 thinc == 3.2
murmurhash == 0.24 murmurhash == 0.24
unidecode unidecode
numpy numpy

View File

@ -118,7 +118,7 @@ def run_setup(exts):
ext_modules=exts, ext_modules=exts,
license="Dual: Commercial or AGPL", license="Dual: Commercial or AGPL",
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.37', install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.37',
'thinc == 3.0', "unidecode", 'wget', 'plac', 'six', 'thinc == 3.2', "unidecode", 'wget', 'plac', 'six',
'ujson'], 'ujson'],
setup_requires=["headers_workaround"], setup_requires=["headers_workaround"],
) )
@ -130,7 +130,7 @@ def run_setup(exts):
headers_workaround.install_headers('numpy') headers_workaround.install_headers('numpy')
VERSION = '0.86' VERSION = '0.87'
def main(modules, is_pypy): def main(modules, is_pypy):
language = "cpp" language = "cpp"
includes = ['.', path.join(sys.prefix, 'include')] includes = ['.', path.join(sys.prefix, 'include')]

View File

@ -7,17 +7,12 @@ import wget
import plac import plac
# TODO: Read this from the same source as the setup # TODO: Read this from the same source as the setup
VERSION = '0.8.6' VERSION = '0.8.7'
AWS_STORE = 'http://s3-us-west-1.amazonaws.com/media.spacynlp.com' AWS_STORE = 'http://s3-us-west-1.amazonaws.com/media.spacynlp.com'
ALL_DATA_DIR_URL = '%s/en_data_all-%s.tgz' % (AWS_STORE, VERSION) ALL_DATA_DIR_URL = '%s/en_data_all-%s.tgz' % (AWS_STORE, VERSION)
SM_DATA_DIR_URL = '%s/en_data_sm-%s.tgz' % (AWS_STORE, VERSION)
SPEECH_DATA_DIR_URL = '%s/en_data_speech-%s.tgz' % (AWS_STORE, VERSION)
DEST_DIR = path.join(path.dirname(__file__), 'data') DEST_DIR = path.join(path.dirname(__file__), 'data')
def download_file(url, out): def download_file(url, out):