Skip to content

Commit 8cb6745

Browse files
authored
deps: Update project dependencies to latest (#1369)
1 parent 18eddc4 commit 8cb6745

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

build.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ else
4040
exit 1
4141
fi
4242
if ! which nox ; then
43-
$PIP_CMD install nox
43+
python3 -m pip install nox
4444
fi
4545

4646

@@ -85,8 +85,12 @@ function lint() {
8585

8686
## deps - updates project dependencies to latest
8787
function 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

requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pytest==9.0.2
22
mock==5.2.0
33
pytest-cov==7.0.0
44
pytest-asyncio==1.3.0
5-
SQLAlchemy[asyncio]==2.0.44
5+
SQLAlchemy[asyncio]==2.0.45
66
sqlalchemy-pytds==1.0.2
77
sqlalchemy-stubs==0.4
88
PyMySQL==1.1.2

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
aiofiles==25.1.0
2-
aiohttp==3.13.2
2+
aiohttp==3.13.3
33
cryptography==46.0.3
44
dnspython==2.8.0
55
Requests==2.32.5
6-
google-auth==2.43.0
6+
google-auth==2.47.0

0 commit comments

Comments
 (0)