Skip to content

Commit

Permalink
Add specific version of mysqlclient to requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
BezBartek committed Nov 27, 2024
1 parent 165ba65 commit 35d69e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3"

services:
postgres:
image: postgres
image: postgres:16
container_name: django-db-views-postgres
restart: unless-stopped
environment:
Expand All @@ -14,10 +14,10 @@ services:
- "${POSTGRES_PORT}:5432"

mysql:
image: mysql:8.0
image: mysql:8.4
container_name: django-db-views-mysql
restart: unless-stopped
command: --default-authentication-plugin=mysql_native_password
command: --mysql-native-password=ON
environment:
MYSQL_ROOT_PASSWORD: "${MYSQL_PASSWORD}"
MYSQL_DATABASE: "${MYSQL_DATABASE}"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ setenv =
conda_deps =
psycopg2
pytest-django
mysqlclient
mysqlclient==2.2.1
pytest-mock
deps =
django-environ==0.9.0
Expand Down

0 comments on commit 35d69e0

Please sign in to comment.