Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ else
exit 1
fi
if ! which nox ; then
$PIP_CMD install nox
python3 -m pip install nox
fi


Expand Down Expand Up @@ -85,8 +85,12 @@ function lint() {

## deps - updates project dependencies to latest
function deps() {
echo "Todo: deps"
exit 1
if ! which pip-review ; then
python3 -m pip install pip-review
fi
pip-review --auto -r requirements.txt
pip-review --auto -r requirements-test.txt
echo "Dependencies updated successfully."
}

# write_e2e_env - Loads secrets from the gcloud project and writes
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pytest==9.0.2
mock==5.2.0
pytest-cov==7.0.0
pytest-asyncio==1.3.0
SQLAlchemy[asyncio]==2.0.44
SQLAlchemy[asyncio]==2.0.45
sqlalchemy-pytds==1.0.2
sqlalchemy-stubs==0.4
PyMySQL==1.1.2
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aiofiles==25.1.0
aiohttp==3.13.2
aiohttp==3.13.3
cryptography==46.0.3
dnspython==2.8.0
Requests==2.32.5
google-auth==2.43.0
google-auth==2.47.0
Loading