Skip to content

Commit

Permalink
feat: reduce restriction on dependency version, widen supported range (
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurinehate authored Nov 17, 2022
1 parent eb5a92d commit 04d1989
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions datahub-classify/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ def get_long_description():


base_requirements = {
"spacy==3.4.1",
"phonenumbers==8.12.56",
"pandas==1.5.0",
"spacy-download==1.0.0"
"spacy>=3.4.1,<=3.4.3",
"phonenumbers>=8.12.56,<=8.13.0",
"pandas>=1.5.0,<=1.5.1",
"spacy-download>=1.0.0"
}

dev_requirements = {
Expand Down

0 comments on commit 04d1989

Please sign in to comment.