Skip to content

Commit

Permalink
Add packaging to dependencies (#12753)
Browse files Browse the repository at this point in the history
* Add `packaging` to dependencies

* Update LICENSE-3rdparty.csv

* fix
  • Loading branch information
ofek authored and steveny91 committed Aug 18, 2022
1 parent 260c0d7 commit 4a0ceae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
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

0 comments on commit 4a0ceae

Please sign in to comment.