From 04311dbe4e40473c94d18e903a9f5a8e0ee04a02 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 15:26:53 +0000 Subject: [PATCH 1/2] build(deps): bump pyyaml from 6.0.1 to 6.0.2 in /server Bumps [pyyaml](https://github.com/yaml/pyyaml) from 6.0.1 to 6.0.2. - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/main/CHANGES) - [Commits](https://github.com/yaml/pyyaml/compare/6.0.1...6.0.2) --- updated-dependencies: - dependency-name: pyyaml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- server/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/requirements.txt b/server/requirements.txt index 50c69b94..aac72cd9 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -1,7 +1,7 @@ rq==1.16.2 click==8.1.7 redis==5.0.8 -pyyaml==6.0.1 +pyyaml==6.0.2 jsonschema==4.17.3;python_version<"3.8" jsonschema==4.23.0;python_version>="3.8" requests==2.31.0;python_version<"3.8" From 6bf72f30c0b7143bd9eb21ee35f1509fcfb32c1c Mon Sep 17 00:00:00 2001 From: david-yz-liu Date: Mon, 2 Sep 2024 11:42:35 -0400 Subject: [PATCH 2/2] Fix dependency for Python 3.7 --- server/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/requirements.txt b/server/requirements.txt index aac72cd9..808d9272 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -1,7 +1,8 @@ rq==1.16.2 click==8.1.7 redis==5.0.8 -pyyaml==6.0.2 +pyyaml==6.0.1;python_version<"3.8" +pyyaml==6.0.2;python_version>="3.8" jsonschema==4.17.3;python_version<"3.8" jsonschema==4.23.0;python_version>="3.8" requests==2.31.0;python_version<"3.8"