Skip to content

Commit 1086010

Browse files
authored
Fix cyclic imports caused by DRF importing external renderer classes during import (#218)
Also update version to 9.5.6
1 parent d4a3ccb commit 1086010

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [9.5.6] - 2022-06-16
8+
9+
Fix cyclic imports caused by DRF importing external renderer classes during import
10+
711
## [9.5.5] - 2022-06-13
812

913
Generate titles for dataclass-generated openapi schemas

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "winter"
3-
version = "9.5.5"
3+
version = "9.5.6"
44
homepage = "https://github.com/WinterFramework/winter"
55
description = "Web Framework inspired by Spring Framework"
66
authors = ["Alexander Egorov <[email protected]>"]

winter_django/view.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
from typing import Any
44
from typing import List
55
from typing import Type
6+
from typing import TYPE_CHECKING
67

78
import django.http
89
import rest_framework.authentication
910
import rest_framework.response
10-
import rest_framework.views
1111
from django.conf.urls import url
1212
from rest_framework.permissions import IsAuthenticated
1313
from rest_framework.request import Request
@@ -30,6 +30,10 @@
3030
from winter.web.urls import rewrite_uritemplate_with_regexps
3131

3232

33+
if TYPE_CHECKING:
34+
import rest_framework.views
35+
36+
3337
class SessionAuthentication(rest_framework.authentication.SessionAuthentication):
3438
"""SessionAuthentication with supporting 401 status code"""
3539

@@ -51,7 +55,9 @@ def create_django_urls(controller_class: Type) -> List:
5155
return django_urls
5256

5357

54-
def create_drf_view(controller_class: Type, routes: List[Route]) -> rest_framework.views.APIView:
58+
def create_drf_view(controller_class: Type, routes: List[Route]) -> 'rest_framework.views.APIView':
59+
import rest_framework.views
60+
5561
component = get_component(controller_class)
5662

5763
class WinterView(rest_framework.views.APIView):

0 commit comments

Comments
 (0)