Skip to content

Commit 3ab4393

Browse files
committed
try fix CI installations
1 parent b3d1e53 commit 3ab4393

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
144144
poetry add django@^${{ matrix.django-version }}
145145
poetry add django-filter@^${{ matrix.filter-version }} --optional
146-
poetry add djangorestframework@${{ matrix.drf-version }} --optional
146+
poetry add djangorestframework@"${{ matrix.drf-version }}" --optional
147147
poetry install --no-interaction --with ${{ matrix.psycopg-version }}
148148
- name: No Optional Dependency Unit Tests
149149
run: |
@@ -246,7 +246,7 @@ jobs:
246246
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
247247
poetry add django@^${{ matrix.django-version }}
248248
poetry add django-filter@^${{ matrix.filter-version }} --optional
249-
poetry add djangorestframework@${{ matrix.drf-version }} --optional
249+
poetry add djangorestframework@"${{ matrix.drf-version }}" --optional
250250
poetry install --no-interaction -E all
251251
- name: Run Full Unit Tests
252252
run: |
@@ -349,7 +349,7 @@ jobs:
349349
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
350350
poetry add django@^${{ matrix.django-version }}
351351
poetry add django-filter@^${{ matrix.filter-version }} --optional
352-
poetry add djangorestframework@${{ matrix.drf-version }} --optional
352+
poetry add djangorestframework@"${{ matrix.drf-version }}" --optional
353353
poetry install -E all --with mysql
354354
- name: Install mysqlclient if needed
355355
if: ${{ matrix.mysqlclient-version != '' }}
@@ -463,7 +463,7 @@ jobs:
463463
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
464464
poetry add django@^${{ matrix.django-version }}
465465
poetry add django-filter@^${{ matrix.filter-version }} --optional
466-
poetry add djangorestframework@${{ matrix.drf-version }} --optional
466+
poetry add djangorestframework@"${{ matrix.drf-version }}" --optional
467467
poetry install -E all --with mysql
468468
- name: Install mysqlclient if needed
469469
if: ${{ matrix.mysqlclient-version != '' }}
@@ -585,7 +585,7 @@ jobs:
585585
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
586586
poetry add django@^${{ matrix.django-version }}
587587
poetry add django-filter@^${{ matrix.filter-version }} --optional
588-
poetry add djangorestframework@${{ matrix.drf-version }} --optional
588+
poetry add djangorestframework@"${{ matrix.drf-version }}" --optional
589589
poetry install -E all --with oracle
590590
- name: Run Full Unit Tests
591591
run: |

0 commit comments

Comments
 (0)