Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix keepalive refresh mixin with new poetry #357

Merged
merged 5 commits into from
Oct 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update tests
KundaPanda committed Oct 7, 2022
commit 0b308f6f605f89b2448457b34b95c0e640135229
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
from nox_poetry import Session, session

package = "strawberry_django_jwt"
python_versions = ["3.10", "3.9", "3.8", "3.7"]
python_versions = ["3.10", "3.9", "3.8"] # + ["3.7"] # Disable for now, strawberry-django does not support 3.7 since it uses TypedDict in settings
django_versions = ["4.1", "3.2"]
invalid_sessions = [
("3.7", "4.1"),
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from datetime import timedelta
from functools import wraps
from imp import reload
import importlib
from importlib import reload
from types import ModuleType
from unittest import mock