Skip to content

Commit 5587c6a

Browse files
authored
fix(deps): add lower bounds to all dependencies (#99)
1 parent 143a1f8 commit 5587c6a

File tree

7 files changed

+12
-2
lines changed

7 files changed

+12
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
from setuptools import setup
1919

2020

21-
TOOL_DEPENDENCIES = "click"
21+
TOOL_DEPENDENCIES = "click>=6.0.0"
2222

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

2525

2626
with io.open("README.rst", "r") as fh:

testing/constraints-3.10.txt

Whitespace-only changes.

testing/constraints-3.11.txt

Whitespace-only changes.

testing/constraints-3.6.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This constraints file is used to check that lower bounds
2+
# are correct in setup.py
3+
# List *all* library dependencies and extras in this file.
4+
# Pin the version to the lower bound.
5+
#
6+
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
7+
# Then this file should have foo==1.14.0
8+
google-auth==1.0.0
9+
requests-oauthlib==0.7.0
10+
click==6.0.0

testing/constraints-3.7.txt

Whitespace-only changes.

testing/constraints-3.8.txt

Whitespace-only changes.

testing/constraints-3.9.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)