Skip to content

Commit 56c05e5

Browse files
authored
Bump version string to v2.0.0b6 (#1316)
1 parent 84e1246 commit 56c05e5

File tree

5 files changed

+5
-268
lines changed

5 files changed

+5
-268
lines changed

pyproject.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,7 @@ classifiers = [
3939
"Programming Language :: Python :: Implementation :: CPython",
4040
"Programming Language :: Python :: Implementation :: PyPy",
4141
]
42-
dependencies = [
43-
"fastjsonschema >=2.14.5",
44-
"requests >=2",
45-
"lxml >=4",
46-
"anyio >=3",
47-
]
42+
dependencies = ["fastjsonschema>=2.14.5", "requests>=2", "lxml>=4", "anyio>=3"]
4843
dynamic = ["version"]
4944
urls.Changelog = "https://reactpy.dev/docs/about/changelog.html"
5045
urls.Documentation = "https://reactpy.dev/"
@@ -53,7 +48,7 @@ urls.Source = "https://github.com/reactive-python/reactpy"
5348
[project.optional-dependencies]
5449
all = ["reactpy[asgi,jinja,testing]"]
5550
asgi = ["asgiref", "asgi-tools", "servestatic", "orjson"]
56-
jinja = ["jinja2-simple-tags", "jinja2 >=3"]
51+
jinja = ["jinja2-simple-tags", "jinja2>=3"]
5752
testing = ["playwright", "uvicorn[standard]"]
5853

5954
[tool.hatch.version]

src/js/packages/event-to-object/src/events.ts

Lines changed: 0 additions & 257 deletions
This file was deleted.

src/reactpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from reactpy.utils import Ref, reactpy_to_string, string_to_reactpy
2424

2525
__author__ = "The Reactive Python Team"
26-
__version__ = "2.0.0b5"
26+
__version__ = "2.0.0b6"
2727

2828
__all__ = [
2929
"Ref",

src/reactpy/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,8 +544,8 @@ class DangerouslySetInnerHTML(TypedDict):
544544
__html: str
545545

546546

547-
# TODO: It's probably better to break this one attributes dict down into what each specific
548-
# HTML node's attributes can be, and make sure those types are resolved correctly within `HtmlConstructor`
547+
# TODO: It's probably better to break this down into what each HTML node's attributes can be,
548+
# and make sure those types are resolved correctly within `HtmlConstructor`
549549
# TODO: This could be generated by parsing from `@types/react` in the future
550550
# https://www.npmjs.com/package/@types/react?activeTab=code
551551
VdomAttributesTypeDict = TypedDict(

tests/tooling/hooks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ def use_toggle(init=False):
1010
return state, lambda: set_state(lambda old: not old)
1111

1212

13-
# TODO: Remove this
1413
def use_counter(initial_value):
1514
state, set_state = use_state(initial_value)
1615
return state, lambda: set_state(lambda old: old + 1)

0 commit comments

Comments
 (0)