Skip to content

Commit

Permalink
test-stats: bumps docker and python deps
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
8 changes: 8 additions & 0 deletions docker/test-stats/pyproject.toml
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"]
28 changes: 22 additions & 6 deletions docker/test-stats/requirements.txt
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

0 comments on commit 799394c

Please sign in to comment.