-
Notifications
You must be signed in to change notification settings - Fork 687
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test-stats: bumps docker and python deps
Resolves open dependabot PRs and updates to latest Flask release. Normalizes project to use pyproject.toml with pip-compile for creating requirements.txt. Signed-off-by: Lance Austin <laustin@datawire.io>
- Loading branch information
Lance Austin
committed
Oct 9, 2023
1 parent
5c73bfb
commit 799394c
Showing
2 changed files
with
30 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "test_stats" | ||
version = "0.0.0" | ||
dependencies = ["flask"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,22 @@ | ||
click==8.1.6 # via flask | ||
flask==2.3.2 | ||
itsdangerous==2.1.2 # via flask | ||
jinja2==3.1.2 # via flask | ||
markupsafe==2.1.3 # via jinja2 | ||
werkzeug==2.3.6 # via flask | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# pip-compile | ||
# | ||
blinker==1.6.3 | ||
# via flask | ||
click==8.1.7 | ||
# via flask | ||
flask==3.0.0 | ||
# via test-stats (pyproject.toml) | ||
itsdangerous==2.1.2 | ||
# via flask | ||
jinja2==3.1.2 | ||
# via flask | ||
markupsafe==2.1.3 | ||
# via | ||
# jinja2 | ||
# werkzeug | ||
werkzeug==3.0.0 | ||
# via flask |