diff --git a/environment.yml b/environment.yml index 22c86e3..5e29b5a 100755 --- a/environment.yml +++ b/environment.yml @@ -1,6 +1,6 @@ name: Aspect-Based-Sentiment-Analysis dependencies: - - python=3.7 + - python>=3.7 - scikit-learn=0.24.2 - pytest=6.2.4 - pytest-timeout=1.4.2 diff --git a/setup.py b/setup.py index 4fcdbbf..b74e27c 100644 --- a/setup.py +++ b/setup.py @@ -34,5 +34,5 @@ 'optuna', 'spacy' ], - python_requires='==3.7.*', + python_requires='>=3.7.*', )