File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 4040 exit 1
4141fi
4242if ! which nox ; then
43- $PIP_CMD install nox
43+ python3 -m pip install nox
4444fi
4545
4646
@@ -85,8 +85,12 @@ function lint() {
8585
8686# # deps - updates project dependencies to latest
8787function deps() {
88- echo " Todo: deps"
89- exit 1
88+ if ! which pip-review ; then
89+ python3 -m pip install pip-review
90+ fi
91+ pip-review --auto -r requirements.txt
92+ pip-review --auto -r requirements-test.txt
93+ echo " Dependencies updated successfully."
9094}
9195
9296# write_e2e_env - Loads secrets from the gcloud project and writes
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ pytest==9.0.2
22mock==5.2.0
33pytest-cov==7.0.0
44pytest-asyncio==1.3.0
5- SQLAlchemy[asyncio]==2.0.44
5+ SQLAlchemy[asyncio]==2.0.45
66sqlalchemy-pytds==1.0.2
77sqlalchemy-stubs==0.4
88PyMySQL==1.1.2
Original file line number Diff line number Diff line change 11aiofiles == 25.1.0
2- aiohttp == 3.13.2
2+ aiohttp == 3.13.3
33cryptography == 46.0.3
44dnspython == 2.8.0
55Requests == 2.32.5
6- google-auth == 2.43 .0
6+ google-auth == 2.47 .0
You can’t perform that action at this time.
0 commit comments