Skip to content

Commit

Permalink
CU-86967nnra: Remove upper bound from python requirements.
Browse files Browse the repository at this point in the history
Upper bound could be lifted as soon as `spacy` releases a compatible versions. And it _shouldn't_ require any changes from our side. And it isn't possible to install it on higher versions (currently) due to no `spacy` being available for those versions
  • Loading branch information
mart-r committed Oct 16, 2024
1 parent 7c3f544 commit da11b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
packages=['medcat', 'medcat.utils', 'medcat.preprocessing', 'medcat.ner', 'medcat.linking', 'medcat.datasets',
'medcat.tokenizers', 'medcat.utils.meta_cat', 'medcat.pipeline', 'medcat.utils.ner', 'medcat.utils.relation_extraction',
'medcat.utils.saving', 'medcat.utils.regression', 'medcat.stats'],
python_requires='>=3.9, <3.12', # 3.8 is EoL, 3.12 support is currently waiting on spacy
python_requires='>=3.9', # 3.8 is EoL
install_requires=install_requires,
include_package_data=True,
package_data={"medcat": ["install_requires.txt"]},
Expand Down

0 comments on commit da11b18

Please sign in to comment.