@@ -163,7 +163,7 @@ jobs:
163
163
matrix :
164
164
python-version : [ '3.8', '3.12']
165
165
mysql-version : ['5.7', 'latest']
166
- mysqlclient-version : ['== 1.4.0 ', '']
166
+ mysqlclient-version : ['1.4.3 ', '']
167
167
django-version :
168
168
- ' 3.2' # LTS April 2024
169
169
- ' 4.2' # LTS April 2026
@@ -180,7 +180,7 @@ jobs:
180
180
- python-version : ' 3.12'
181
181
mysql-version : ' 5.7'
182
182
- python-version : ' 3.12'
183
- mysqlclient-version : ' == 1.4.0 '
183
+ mysqlclient-version : ' 1.4.3 '
184
184
185
185
services :
186
186
mysql :
@@ -218,7 +218,7 @@ jobs:
218
218
poetry run pip install --upgrade pip
219
219
poetry install -E all --with mysql
220
220
poetry run pip install -U "Django~=${{ matrix.django-version }}"
221
- poetry run pip install -U mysqlclient"${{ matrix.mysqlclient-version }}"
221
+ poetry run pip install -U mysqlclient== "${{ matrix.mysqlclient-version }}"
222
222
- name : Run Full Unit Tests
223
223
env :
224
224
MYSQL_VERSION : ${{ matrix.mysql-version }}
@@ -232,7 +232,7 @@ jobs:
232
232
strategy :
233
233
matrix :
234
234
python-version : [ '3.8', '3.12']
235
- mysqlclient-version : ['== 1.4.0 ', '']
235
+ mysqlclient-version : ['1.4.3 ', '']
236
236
mariadb-version : ['10.2', 'latest']
237
237
mariadb-healthcheck : ["mysqladmin ping", "healthcheck.sh --connect --innodb_initialized"]
238
238
django-version :
@@ -251,7 +251,7 @@ jobs:
251
251
- python-version : ' 3.12'
252
252
mariadb-version : ' 10.2'
253
253
- python-version : ' 3.12'
254
- mysqlclient-version : ' == 1.4.0 '
254
+ mysqlclient-version : ' 1.4.3 '
255
255
- mariadb-version : ' latest'
256
256
mariadb-healthcheck : " mysqladmin ping"
257
257
- mariadb-version : ' 10.2'
@@ -293,7 +293,7 @@ jobs:
293
293
poetry run pip install --upgrade pip
294
294
poetry install -E all --with mysql
295
295
poetry run pip install -U "Django~=${{ matrix.django-version }}"
296
- poetry run pip install -U mysqlclient"${{ matrix.mysqlclient-version }}"
296
+ poetry run pip install -U mysqlclient== "${{ matrix.mysqlclient-version }}"
297
297
- name : Run Full Unit Tests
298
298
run : |
299
299
poetry run pytest
0 commit comments