Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add packaging to dependencies #12753

Merged
merged 3 commits into from
Aug 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions LICENSE-3rdparty.csv
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ mmh3,PyPI,CC0-1.0,Hajime Senuma
openstacksdk,PyPI,Apache-2.0,OpenStack
orjson,PyPI,Apache-2.0,ijl <[email protected]>
orjson,PyPI,MIT,ijl <[email protected]>
packaging,PyPI,Apache-2.0,Donald Stufft and individual contributors
packaging,PyPI,BSD-2-Clause,Donald Stufft and individual contributors
packaging,PyPI,BSD-3-Clause,Donald Stufft and individual contributors
paramiko,PyPI,LGPL-2.1-only,Jeff Forcier
ply,PyPI,BSD-3-Clause,David Beazley
prometheus-client,PyPI,Apache-2.0,Brian Brazil
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ mmh3==3.0.0; python_version > '3.0'
openstacksdk==0.39.0; python_version < '3.0'
openstacksdk==0.61.0; python_version > '3.0'
orjson==3.7.11; python_version > '3.0'
packaging==20.9; python_version < '3.0'
packaging==21.3; python_version > '3.0'
paramiko==2.11.0
ply==3.11
prometheus-client==0.12.0; python_version < '3.0'
Expand Down
3 changes: 2 additions & 1 deletion datadog_checks_downloader/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ dynamic = [
[project.optional-dependencies]
deps = [
"in-toto==1.0.1",
"packaging==20.9; python_version < '3.0'",
"packaging==21.3; python_version > '3.0'",
"securesystemslib[crypto,pynacl]==0.20.1",
"tuf==0.17.0; python_version < '3.0'",
"tuf==0.19.0; python_version > '3.0'",
"packaging==21.3",
]

[project.urls]
Expand Down