Skip to content

Commit

Permalink
Loosen dependency restrictions (#289)
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <lukas.heumos@posteo.net>

Signed-off-by: zethson <lukas.heumos@posteo.net>
  • Loading branch information
Zethson committed Dec 22, 2022
1 parent 7c28bda commit 169bc1d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
'medcat.tokenizers', 'medcat.utils.meta_cat', 'medcat.pipeline', 'medcat.neo', 'medcat.utils.ner', 'medcat.utils.regression'],
install_requires=[
'numpy>=1.21.4',
'pandas<=1.4.2,>=1.1.5',
'pandas>=1.1.5',
'gensim~=4.1.2',
'spacy<3.1.4,>=3.1.0',
'scipy<=1.8.1,>=1.5.4',
'scipy>=1.5.4',
'transformers~=4.19.2',
'torch>=1.0',
'tqdm>=4.27',
Expand All @@ -31,7 +31,7 @@
'dill~=0.3.4,<0.3.5', # less than 0.3.5 due to datasets requirement
'datasets~=2.2.2',
'jsonpickle~=2.0.0',
'psutil<6.0.0,>=5.8.0',
'psutil>=5.8.0',
# 0.70.12 uses older version of dill (i.e less than 0.3.5) which is required for datasets
'multiprocess==0.70.12', # seems to work better than standard mp
'py2neo==2021.2.3',
Expand Down

0 comments on commit 169bc1d

Please sign in to comment.