From 45f09d7042619c35bb88497ec64a748b9901423a Mon Sep 17 00:00:00 2001 From: sowmiya-m-00 Date: Wed, 21 Jan 2026 18:11:59 +0530 Subject: [PATCH 1/2] Update Snyk command to use Poetry for dependencies --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ec8889c..936a877 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,8 @@ jobs: - name: Run Snyk to check for vulnerabilities uses: snyk/actions/python@master env: - COMMAND: "python setup.py install" + COMMAND: "pip install poetry && poetry config virtualenvs.create false && poetry install" SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: - args: --file=setup.py + command: monitor + From 5b3e4ae3b6ee19d188af8284f95c8a93888c45ef Mon Sep 17 00:00:00 2001 From: sowmiya-m-00 Date: Wed, 21 Jan 2026 18:12:54 +0530 Subject: [PATCH 2/2] Fix typo in dependent packages comment --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 99faf31..0f27112 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ description="Example App", test_suite='tests', - # Dependent packages (distributions) + # DependentS packages (distributions) install_requires=[ 'Flask==0.10.1', 'Flask-Testing==0.4.2',