mirror of
https://github.com/django-components/django-components.git
synced 2025-09-26 15:39:08 +00:00
Merge branch 'master' into dependabot/pip/pytest-7.2.2
This commit is contained in:
commit
ee7dab1435
4 changed files with 6 additions and 4 deletions
2
.github/FUNDING.yml
vendored
Normal file
2
.github/FUNDING.yml
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
github: ["EmilStenstrom"]
|
||||||
|
|
|
@ -315,7 +315,7 @@ class ComponentNode(Node):
|
||||||
self.name_var = name_var
|
self.name_var = name_var
|
||||||
self.context_args = context_args or []
|
self.context_args = context_args or []
|
||||||
self.context_kwargs = context_kwargs or {}
|
self.context_kwargs = context_kwargs or {}
|
||||||
self.fill_nodes: List[FillNode] = []
|
self.fill_nodes: NodeList[FillNode] = NodeList()
|
||||||
self.isolated_context = isolated_context
|
self.isolated_context = isolated_context
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
|
|
|
@ -49,7 +49,7 @@ pluggy==1.0.0
|
||||||
# via
|
# via
|
||||||
# pytest
|
# pytest
|
||||||
# tox
|
# tox
|
||||||
pre-commit==3.1.1
|
pre-commit==3.2.0
|
||||||
# via -r requirements-dev.in
|
# via -r requirements-dev.in
|
||||||
pycodestyle==2.10.0
|
pycodestyle==2.10.0
|
||||||
# via flake8
|
# via flake8
|
||||||
|
@ -63,7 +63,7 @@ pyyaml==6.0
|
||||||
# via pre-commit
|
# via pre-commit
|
||||||
sqlparse==0.4.3
|
sqlparse==0.4.3
|
||||||
# via django
|
# via django
|
||||||
tox==4.4.6
|
tox==4.4.7
|
||||||
# via -r requirements-dev.in
|
# via -r requirements-dev.in
|
||||||
virtualenv==20.17.1
|
virtualenv==20.17.1
|
||||||
# via
|
# via
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@ import os
|
||||||
|
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
VERSION = "0.26.1"
|
VERSION = "0.26.2"
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="django_components",
|
name="django_components",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue