File tree Expand file tree Collapse file tree 2 files changed +35
-4
lines changed Expand file tree Collapse file tree 2 files changed +35
-4
lines changed Original file line number Diff line number Diff line change 3838 - name : Install dependencies
3939 run : |
4040 python -m pip install --upgrade pip
41- pip install -e '.[test]'
41+ pip install -r requirements.txt
4242
4343 - uses : snyk/actions/setup@master
4444
45- - name : Run Snyk (setup.py)
46- run : snyk monitor --file="setup.py" --package-manager=pip --project-name="setup.py" --org=${{ env.SNYK_ORG }}
47-
4845 - name : Run Snyk (requirements.txt)
4946 run : snyk monitor --file="requirements.txt" --package-manager=pip --project-name="requirements.txt" --org=${{ env.SNYK_ORG }}
Original file line number Diff line number Diff line change 1+ # This file is just for Snyk scanning,
2+ # because it doesn't understand pyproject.toml
3+ # unless it uses Poetry.
4+ # https://github.com/snyk/snyk-python-plugin/issues/147
5+
6+ # build-system.requires
7+ setuptools >= 61
8+ setuptools_scm [toml ]>= 3.4
9+ wheel
10+
11+ # project.dependencies
12+ six >= 1.14.0
13+ click >= 7.0.0
14+ pip >= 10.0.0
15+ semver >= 2.0.0 ,< 3.0.0
16+ pyjwt >= 2.4.0
17+ black == 22.3.0
18+
19+ # project.optional-dependencies.test
20+ coverage
21+ flake8-pyproject
22+ flake8
23+ httpretty
24+ ipykernel
25+ mypy
26+ nbconvert
27+ pytest-cov
28+ pytest-mypy
29+ pytest
30+ setuptools_scm [toml ]
31+ twine
32+ types-click
33+ types-Flask
34+ types-six
You can’t perform that action at this time.
0 commit comments