Skip to content

Commit

Permalink
SK-1736: Updated requirements.txt (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
saileshwar-skyflow authored Dec 5, 2024
1 parent 25318ea commit 8291443
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
from setuptools import setup, find_packages
import sys

if sys.version_info < (3, 7):
raise RuntimeError("skyflow requires Python 3.7+")
current_version = '1.15.1.dev0+4336c2a'

if sys.version_info < (3, 8):
raise RuntimeError("skyflow requires Python 3.8+")
current_version = '1.15.1.dev0+69630e5'

setup(
name='skyflow',
Expand All @@ -19,14 +20,17 @@
description='Skyflow SDK for the Python programming language',
long_description=open('README.rst').read(),
install_requires=[
'python_dateutil >= 2.5.3',
'setuptools >= 21.0.0',
'urllib3 >= 1.25.3, < 2.1.0',
'pydantic >= 2',
'typing-extensions >= 4.7.1',
'DateTime~=5.5',
'PyJWT~=2.9.0',
'requests~=2.32.3'
],
python_requires=">=3.7"
'python_dateutil >= 2.5.3',
'setuptools >= 21.0.0',
'urllib3 >= 1.25.3, < 2.1.0',
'pydantic >= 2',
'typing-extensions >= 4.7.1',
'DateTime~=5.5',
'PyJWT~=2.9.0',
'requests~=2.32.3',
'coverage',
'cryptography',
'python-dotenv~=1.0.1'
],
python_requires=">=3.8"
)

0 comments on commit 8291443

Please sign in to comment.