Skip to content

Commit 5fa88b8

Browse files
committed
switch to hatch >=v1.16.2
1 parent 422dc8c commit 5fa88b8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/.hatch-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
- name: Install Python Dependencies
46-
run: pip install "hatch<1.16"
46+
run: pip install hatch
4747
- name: Run Scripts
4848
env:
4949
NPM_CONFIG_TOKEN: ${{ secrets.node-auth-token }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ artifacts = []
8686

8787
[tool.hatch.envs.hatch-test]
8888
extra-dependencies = [
89-
"reactpy[all]",
9089
"pytest-sugar",
9190
"pytest-asyncio",
9291
"responses",
9392
"exceptiongroup",
9493
"jsonpointer",
9594
"starlette",
9695
]
96+
features = ["all"]
9797

9898
[[tool.hatch.envs.hatch-test.matrix]]
9999
python = ["3.10", "3.11", "3.12", "3.13"]

src/reactpy/core/vdom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def separate_attributes_and_children(
217217

218218
_attributes: VdomAttributes
219219
children_or_iterables: Sequence[Any]
220-
if type(values[0]) is dict: # noqa: E721
220+
if type(values[0]) is dict:
221221
_attributes, *children_or_iterables = values
222222
else:
223223
_attributes = {}

0 commit comments

Comments
 (0)