Skip to content

Commit

Permalink
remove unneeded python version check
Browse files Browse the repository at this point in the history
Signed-off-by: Niels Bantilan <[email protected]>
  • Loading branch information
cosmicBboy committed Feb 6, 2023
1 parent f6ee7f2 commit 76f0ad6
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
import sys

from setuptools import find_packages, setup # noqa

MIN_PYTHON_VERSION = (3, 7)
CURRENT_PYTHON = sys.version_info[:2]
if CURRENT_PYTHON < MIN_PYTHON_VERSION:
print(
f"Flytekit API is only supported for Python version is {MIN_PYTHON_VERSION}+. Detected you are on"
f" version {CURRENT_PYTHON}, installation will not proceed!"
)
sys.exit(-1)

extras_require = {}

Expand Down

0 comments on commit 76f0ad6

Please sign in to comment.