From 26496c30e012269b95014ca4969cd98d6b2adb5a Mon Sep 17 00:00:00 2001 From: Alex Saad Date: Fri, 22 Oct 2021 10:18:32 +0200 Subject: [PATCH] Unfix Python version to 3.7 --- environment.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.*', )