Skip to content

Commit

Permalink
fix(deps): add lower bounds to all dependencies (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Feb 6, 2021
1 parent 143a1f8 commit 5587c6a
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
from setuptools import setup


TOOL_DEPENDENCIES = "click"
TOOL_DEPENDENCIES = "click>=6.0.0"

DEPENDENCIES = ("google-auth", "requests-oauthlib>=0.7.0")
DEPENDENCIES = ("google-auth>=1.0.0", "requests-oauthlib>=0.7.0")


with io.open("README.rst", "r") as fh:
Expand Down
Empty file added testing/constraints-3.10.txt
Empty file.
Empty file added testing/constraints-3.11.txt
Empty file.
10 changes: 10 additions & 0 deletions testing/constraints-3.6.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This constraints file is used to check that lower bounds
# are correct in setup.py
# List *all* library dependencies and extras in this file.
# Pin the version to the lower bound.
#
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
# Then this file should have foo==1.14.0
google-auth==1.0.0
requests-oauthlib==0.7.0
click==6.0.0
Empty file added testing/constraints-3.7.txt
Empty file.
Empty file added testing/constraints-3.8.txt
Empty file.
Empty file added testing/constraints-3.9.txt
Empty file.

0 comments on commit 5587c6a

Please sign in to comment.