Skip to content

Commit 8f92ef7

Browse files
tswastparthea
authored andcommitted
deps: remove upper bound on packaging dependency (googleapis#1440)
* deps: remove upper bound on packaging dependency Towards googleapis#1435 * install prerelease version of packaging * bump minimum packaging version Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent 28b3621 commit 8f92ef7

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

noxfile.py

+5
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,11 @@ def prerelease_deps(session):
300300
"--upgrade",
301301
"pandas",
302302
)
303+
session.install(
304+
"--pre",
305+
"--upgrade",
306+
"git+https://github.com/pypa/packaging.git",
307+
)
303308

304309
session.install(
305310
"--pre",

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
# https://github.com/googleapis/google-cloud-python/issues/10566
4242
"google-cloud-core >= 1.4.1, <3.0.0dev",
4343
"google-resumable-media >= 0.6.0, < 3.0dev",
44-
"packaging >= 14.3, <22.0.0dev",
44+
"packaging >= 20.0.0",
4545
"protobuf>=3.19.5,<5.0.0dev,!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5", # For the legacy proto-based types.
4646
"python-dateutil >= 2.7.2, <3.0dev",
4747
"requests >= 2.21.0, < 3.0.0dev",

testing/constraints-3.7.txt

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ ipython==7.0.1
1717
opentelemetry-api==1.1.0
1818
opentelemetry-instrumentation==0.20b0
1919
opentelemetry-sdk==1.1.0
20+
packaging==20.0.0
2021
pandas==1.1.0
2122
proto-plus==1.22.0
2223
protobuf==3.19.5

0 commit comments

Comments
 (0)