From 1efc53b61028f0beb477d2c926f96ef14159e30e Mon Sep 17 00:00:00 2001 From: Tsotne Tabidze Date: Mon, 26 Apr 2021 10:41:14 -0700 Subject: [PATCH] Bump supported Python version to 3.7 (#1504) Signed-off-by: Tsotne Tabidze --- sdk/python/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/python/setup.py b/sdk/python/setup.py index 91512fc963..70dbb9b429 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -35,7 +35,7 @@ DESCRIPTION = "Python SDK for Feast" URL = "https://github.com/feast-dev/feast" AUTHOR = "Feast" -REQUIRES_PYTHON = ">=3.6.0" +REQUIRES_PYTHON = ">=3.7.0" REQUIRED = [ "Click==7.*", @@ -191,7 +191,7 @@ def run(self): "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", ], entry_points={"console_scripts": ["feast=feast.cli:cli"]}, use_scm_version={"root": "../..", "relative_to": __file__, "tag_regex": TAG_REGEX},