Skip to content

Commit

Permalink
Make dependencies flexible (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
setu4993 authored Apr 1, 2022
1 parent 222ba24 commit c452563
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@

setup(
name="stitchclient",
version="1.0.0",
version="1.0.1",
description="A Stitch API client for Python",
author="Stitch",
author_email="[email protected]",
url="https://github.com/stitchdata/python-stitch-client",
classifiers=['Programming Language :: Python :: 3 :: Only'],
packages=find_packages(),
install_requires=[
"python-dateutil==2.6.1",
"python-dateutil>=2.6.1,<3.0",
"msgpack-python",
"requests==2.20.0",
"requests>=2.20.0,<3.0",
],
)

0 comments on commit c452563

Please sign in to comment.