Skip to content

Commit

Permalink
Fixes python 3.7 reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
gurkanindibay committed Sep 23, 2023
1 parent ec774b2 commit e58a224
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 6 additions & 3 deletions requirements/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.8
# by the following command:
#
# pip-compile --output-file=requirements/test-requirements.txt --resolver=backtracking requirements/test.in
Expand Down Expand Up @@ -39,5 +39,8 @@ tomli==2.0.1
# via
# coverage
# pytest
typing-extensions==4.8.0
# via asgiref
typing-extensions==4.8.0 ; python_version >= "3.8"
# via
# -r requirements/test.in
# asgiref
typing-extensions==4.7.1 ; python_version < "3.8"
3 changes: 3 additions & 0 deletions requirements/test.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ pytest-cov
pytest-django
exam
asgiref>= 3.5.2
typing-extensions==4.8.0; python_version >= "3.8"
typing-extensions==4.7.1; python_version < "3.8"

0 comments on commit e58a224

Please sign in to comment.