Skip to content

Commit e0ffab0

Browse files
chore: Add typing-extensions dependency (#658)
1 parent 4927b6c commit e0ffab0

File tree

4 files changed

+30
-28
lines changed

4 files changed

+30
-28
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
if [[ $DB == postgres ]]; then
9696
pip install -q psycopg2-binary
9797
fi
98-
pip install coverage pytest pytest-django pytest-cov $(./get-django-version.py ${{ matrix.django }})
98+
pip install typing-extensions coverage pytest pytest-django pytest-cov $(./get-django-version.py ${{ matrix.django }})
9999
- name: Run tests
100100
run: |
101101
pytest --cov-report term

poetry.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ packages = [
1111
[tool.poetry.dependencies]
1212
python = ">=3.7,<4"
1313
django = ">=3.2"
14+
typing-extensions = "^4.4.0"
1415

1516
[tool.poetry.dev-dependencies]
1617
pdbpp = "^0.10.2"

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ license = New BSD
2828
[options]
2929
install_requires =
3030
Django>=3.2
31+
typing-extensions
3132
importlib-metadata; python_version<"3.8"
3233
packages =
3334
modeltranslation

0 commit comments

Comments
 (0)