Skip to content

Commit

Permalink
Bump version. Don't allow spaCy upgrade yet to prevent model incompat…
Browse files Browse the repository at this point in the history
…ability
  • Loading branch information
ahalterman committed May 8, 2019
1 parent bd82b8b commit a3ccef3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mordecai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .geoparse import Geoparser

__version__ = "2.0.1"
__version__ = "2.0.3"
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ elasticsearch-dsl==5.3.0
h5py>=2.6.0
Keras>=2.0.8
pandas>=0.19.2
spacy>=2.0.3
spacy>=2.0.3,<2.1.0
#https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-2.0.0/en_core_web_lg-2.0.0.tar.gz
tensorflow>=1.3.0
tqdm>=4.28.1
numpy>=1.12
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='mordecai',
version='2.0.1',
version='2.0.3',
description='Full text geoparsing and event geocoding',
url='http://github.com/openeventdata/mordecai/',
author='Andy Halterman',
Expand All @@ -15,10 +15,11 @@
'h5py>=2.6.0',
'Keras>=2.0.8',
'pandas>=0.19.2',
'spacy>=2.0.3',
'requests>=2.18.4',
'spacy>=2.0.3,<2.1.0',
'tensorflow>=1.3.0',
'numpy>=1.12',
'urllib3>=1.22'],
'tqdm>=4.28.1',
'numpy>=1.12'],
dependency_links=['https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-2.0.0/en_core_web_lg-2.0.0.tar.gz'],
include_package_data=True,
package_data = {'data': ['admin1CodesASCII.json',
Expand Down

0 comments on commit a3ccef3

Please sign in to comment.