Merge branch 'master' into dependabot/pip/pytest-7.2.2

This commit is contained in:
Emil Stenström 2023-03-21 22:58:16 +01:00 committed by GitHub
commit ee7dab1435
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 4 deletions

2
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1,2 @@
github: ["EmilStenstrom"]

View file

@ -315,7 +315,7 @@ class ComponentNode(Node):
self.name_var = name_var
self.context_args = context_args or []
self.context_kwargs = context_kwargs or {}
self.fill_nodes: List[FillNode] = []
self.fill_nodes: NodeList[FillNode] = NodeList()
self.isolated_context = isolated_context
def __repr__(self):

View file

@ -49,7 +49,7 @@ pluggy==1.0.0
# via
# pytest
# tox
pre-commit==3.1.1
pre-commit==3.2.0
# via -r requirements-dev.in
pycodestyle==2.10.0
# via flake8
@ -63,7 +63,7 @@ pyyaml==6.0
# via pre-commit
sqlparse==0.4.3
# via django
tox==4.4.6
tox==4.4.7
# via -r requirements-dev.in
virtualenv==20.17.1
# via

View file

@ -3,7 +3,7 @@ import os
from setuptools import find_packages, setup
VERSION = "0.26.1"
VERSION = "0.26.2"
setup(
name="django_components",