Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump aiohttp from 3.8.4 to 3.9.4 in /backend/gateway #302

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 2 additions & 3 deletions .github/workflows/setup-docker-and-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ jobs:
run: |
source venv/bin/activate
pip install -r tests/requirements.txt
pip install -r backend/api/requirements.txt
pip install -r backend/gateway/requirements.txt
pip install -r backend/requirements.txt

- name: Set PYTHONPATH
run: echo "PYTHONPATH=$(pwd)" >> $GITHUB_ENV
Expand All @@ -65,4 +64,4 @@ jobs:
run: |
source venv/bin/activate
cd tests
python -m unittest discover --verbose . "test_*.py"
python -m unittest discover --verbose . "test_*.py"
2 changes: 1 addition & 1 deletion backend/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV PYTHONUNBUFFERED 1
WORKDIR /app

# Copy requirements.txt
COPY ./backend/api/requirements.txt ./
COPY ./backend/requirements.txt ./

# Copy settings.py
COPY settings.py ./
Expand Down
7 changes: 0 additions & 7 deletions backend/api/requirements.txt

This file was deleted.

2 changes: 1 addition & 1 deletion backend/gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV PYTHONUNBUFFERED 1
WORKDIR /app

# Copy requirements.txt
COPY ./backend/gateway/requirements.txt ./
COPY ./backend/requirements.txt ./

# Copy settings.py
COPY settings.py ./
Expand Down
8 changes: 5 additions & 3 deletions backend/gateway/requirements.txt → backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
aiohttp==3.8.4
aiohttp==3.9.4
aiologger==0.7.0
async_timeout==4.0.2
asyncio-mqtt==0.16.1
paho-mqtt<2.0
asyncpg==0.27.0
jsonpath_ng==1.5.3
redis==4.5.4
aiologger==0.7.0
aiofiles==23.1.0
pydantic==1.10.7
pydantic==1.10.13
fastapi==0.109.1
uvicorn==0.22.0
requests==2.26.0
Loading