Skip to content

Commit

Permalink
chore: update starlette to 0.37.1
Browse files Browse the repository at this point in the history
Fixes: #125
  • Loading branch information
VijithaEkanayake committed Feb 14, 2024
1 parent 4ad2482 commit 7358b87
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/snyk-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.10'

- name: Check changed Deps files
uses: tj-actions/changed-files@v35
Expand All @@ -42,12 +42,12 @@ jobs:
sed '/^\.\//d; /^https:\/\//d; /^flake8/d; /^black==/d' requirements.txt > t.txt \
&& mv t.txt requirements.txt
python3.8 -m pip install -r requirements.txt && cd $topdir
python3.10 -m pip install -r requirements.txt && cd $topdir
snyk test \
-d \
--file=$file \
--command=python3.8 \
--command=python3.10 \
--skip-unresolved \
--package-manager=pip
done
Expand All @@ -66,7 +66,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.10'

- name: Monitor Python dependencies
env:
Expand All @@ -80,12 +80,12 @@ jobs:
sed '/^\.\//d; /^https:\/\//d; /^flake8/d; /^black==/d' requirements.txt > t.txt \
&& mv t.txt requirements.txt
python3.8 -m pip install -r requirements.txt && cd $topdir
python3.10 -m pip install -r requirements.txt && cd $topdir
snyk monitor \
-d \
--file=$file \
--command=python3.8 \
--command=python3.10 \
--skip-unresolved \
--package-manager=pip \
--remote-repo-url=wave-apps/${{ steps.extract_ref.outputs.ref }} \
Expand Down
4 changes: 2 additions & 2 deletions guess-the-number/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ httpx==0.16.1
idna==2.10
rfc3986==1.4.0
sniffio==1.2.0
starlette==0.13.8
typing-extensions==3.7.4.3
starlette==0.37.1
typing-extensions==3.10.0
uvicorn==0.12.2
4 changes: 2 additions & 2 deletions sales-forecasting/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rfc3986==1.4.0; python_version >= "3.6" and python_full_version >= "3.6.1"
s3transfer==0.3.3
six==1.15.0; python_full_version >= "3.6.1"
sniffio==1.2.0; python_version >= "3.6" and python_full_version >= "3.6.1"
starlette==0.13.8; python_version >= "3.6" and python_full_version >= "3.6.1"
typing-extensions==3.7.4.3; python_version < "3.8" and python_full_version >= "3.6.1"
starlette==0.37.1
typing-extensions==3.10.0
urllib3==1.26.2; python_version >= "2.7" and python_full_version < "3.0.0" and python_version != "3.4" or python_full_version >= "3.5.0" and python_version < "4" and python_version != "3.4"
uvicorn==0.12.2; python_full_version >= "3.6.1"
6 changes: 4 additions & 2 deletions template-explore-binary-classification/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
h2o_wave==0.20.0
h2o_wave==0.26.3
toml==0.10.2
loguru==0.6.0
pandas==1.4.0
matplotlib==3.5.1
matplotlib==3.5.1
starlette==0.37.1
typing-extensions==3.10.0

0 comments on commit 7358b87

Please sign in to comment.