[go: up one dir, main page]

Skip to content

Commit

Permalink
Updating Deps (Werkzeug)
Browse files Browse the repository at this point in the history
Signed-off-by: Tenshin Higashi <thigashi@datawire.io>
  • Loading branch information
tenshinhigashi authored and Alice-Lilith committed May 9, 2024
1 parent 3b18d9a commit 99256f1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,11 @@ libraries:
---- ------- ----------
Cython 0.29.37 Apache License 2.0
Flask 3.0.3 3-clause BSD license
Jinja2 3.1.3 3-clause BSD license
Jinja2 3.1.4 3-clause BSD license
MarkupSafe 2.1.5 3-clause BSD license
PyYAML 6.0.1 MIT license
Werkzeug 3.0.2 3-clause BSD license
blinker 1.8.1 MIT license
Werkzeug 3.0.3 3-clause BSD license
blinker 1.8.2 MIT license
build 1.2.1 MIT license
certifi 2024.2.2 Mozilla Public License 2.0
charset-normalizer 3.3.2 MIT license
Expand All @@ -197,12 +197,12 @@ libraries:
itsdangerous 2.2.0 3-clause BSD license
jsonpatch 1.33 3-clause BSD license
jsonpointer 2.4 3-clause BSD license
orjson 3.10.1 Apache License 2.0, MIT license
orjson 3.10.3 Apache License 2.0, MIT license
packaging 23.1 2-clause BSD license, Apache License 2.0
pip-tools 7.3.0 3-clause BSD license
prometheus_client 0.20.0 Apache License 2.0
pyparsing 3.0.9 MIT license
pyproject_hooks 1.0.0 MIT license
pyproject_hooks 1.1.0 MIT license
python-json-logger 2.0.7 2-clause BSD license
requests 2.31.0 Apache License 2.0
semantic-version 2.10.0 2-clause BSD license
Expand Down
8 changes: 4 additions & 4 deletions python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# pip-compile --allow-unsafe
#
blinker==1.8.1
blinker==1.8.2
# via flask
certifi==2024.2.2
# via requests
Expand All @@ -26,7 +26,7 @@ idna==3.7
# via requests
itsdangerous==2.2.0
# via flask
jinja2==3.1.3
jinja2==3.1.4
# via flask
jsonpatch==1.33
# via -r requirements.in
Expand All @@ -36,7 +36,7 @@ markupsafe==2.1.5
# via
# jinja2
# werkzeug
orjson==3.10.1
orjson==3.10.3
# via -r requirements.in
packaging==24.0
# via gunicorn
Expand All @@ -54,7 +54,7 @@ typing-extensions==4.11.0
# via -r requirements.in
urllib3==2.2.1
# via requests
werkzeug==3.0.2
werkzeug==3.0.3
# via flask

# The following packages are considered to be unsafe in a requirements file:
Expand Down
10 changes: 5 additions & 5 deletions tools/src/py-mkopensource/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ func parseLicenses(name, version, license string) map[License]struct{} {
// of the BSD license is it?). We pin the exact versions so
// that a human has to go make sure that the license didn't
// change when upgrading.
{"blinker", "1.8.1", ""}: {MIT},
{"blinker", "1.8.2", ""}: {MIT},
{"build", "1.2.1", ""}: {MIT},
{"CacheControl", "0.12.6", "UNKNOWN"}: {Apache2},
{"CacheControl", "0.12.10", "UNKNOWN"}: {Apache2},
{"Click", "7.0", "BSD"}: {BSD3},
{"Flask", "3.0.3", ""}: {BSD3},
{"GitPython", "3.1.11", "UNKNOWN"}: {BSD3},
{"Jinja2", "3.1.3", "BSD"}: {BSD3},
{"Jinja2", "3.1.4", ""}: {BSD3},
{"colorama", "0.4.3", "BSD"}: {BSD3},
{"colorama", "0.4.4", "BSD"}: {BSD3},
{"decorator", "4.4.2", "new BSD License"}: {BSD2},
Expand All @@ -62,7 +62,7 @@ func parseLicenses(name, version, license string) map[License]struct{} {
{"pyasn1-modules", "0.3.0", "BSD"}: {BSD2},
{"pycparser", "2.20", "BSD"}: {BSD3},
{"pyparsing", "3.0.9", ""}: {MIT},
{"pyproject_hooks", "1.0.0", ""}: {MIT},
{"pyproject_hooks", "1.1.0", ""}: {MIT},
{"python-dateutil", "2.8.1", "Dual License"}: {BSD3, Apache2},
{"python-dateutil", "2.8.2", "Dual License"}: {BSD3, Apache2},
{"python-json-logger", "2.0.7", "BSD"}: {BSD2},
Expand All @@ -74,13 +74,13 @@ func parseLicenses(name, version, license string) map[License]struct{} {
{"webencodings", "0.5.1", "BSD"}: {BSD3},
{"websocket-client", "0.57.0", "BSD"}: {BSD3},
{"websocket-client", "1.2.3", "Apache-2.0"}: {Apache2},
{"Werkzeug", "3.0.2", ""}: {BSD3},
{"Werkzeug", "3.0.3", ""}: {BSD3},
{"zipp", "3.11.0", "None"}: {MIT},
{"gunicorn", "22.0.0", "None"}: {MIT},

// These are packages with non-trivial strings to parse, and
// it's easier to just hard-code it.
{"orjson", "3.10.1", "Apache-2.0 OR MIT"}: {Apache2, MIT},
{"orjson", "3.10.3", "Apache-2.0 OR MIT"}: {Apache2, MIT},
{"packaging", "23.1", ""}: {BSD2, Apache2},
{"packaging", "24.0", ""}: {BSD2, Apache2},
}[tuple{name, version, license}]
Expand Down

0 comments on commit 99256f1

Please sign in to comment.