Commit 664d559 1 parent 814e1da commit 664d559 Copy full SHA for 664d559
File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,12 @@ authors = [
18
18
]
19
19
requires-python = " >=3.9"
20
20
classifiers = [
21
- " Development Status :: 4 - Beta " ,
21
+ " Development Status :: 5 - Production/Stable " ,
22
22
" Programming Language :: Python" ,
23
- " Programming Language :: Python :: 3.9" ,
24
23
" Programming Language :: Python :: 3.10" ,
25
24
" Programming Language :: Python :: 3.11" ,
25
+ " Programming Language :: Python :: 3.12" ,
26
+ " Programming Language :: Python :: 3.13" ,
26
27
" Programming Language :: Python :: Implementation :: CPython" ,
27
28
" Programming Language :: Python :: Implementation :: PyPy" ,
28
29
]
@@ -164,9 +165,6 @@ extra-dependencies = [
164
165
" toml" ,
165
166
" mypy==1.8" ,
166
167
" types-toml" ,
167
- " types-click" ,
168
- " types-tornado" ,
169
- " types-flask" ,
170
168
" types-requests" ,
171
169
]
172
170
Original file line number Diff line number Diff line change 2
2
3
3
import click
4
4
5
+ import reactpy
5
6
from reactpy ._console .rewrite_props import rewrite_props
6
7
7
8
8
9
@click .group ()
9
- @click .version_option (package_name = " reactpy" )
10
+ @click .version_option (version = reactpy . __version__ , prog_name = reactpy . __name__ )
10
11
def entry_point () -> None :
11
12
pass
12
13
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ def example_child():
264
264
),
265
265
(
266
266
html .div (
267
- {"dataSomething " : 1 , "dataSomethingElse" : 2 , "dataisnotdashed" : 3 }
267
+ {"data_Something " : 1 , "dataSomethingElse" : 2 , "dataisnotdashed" : 3 }
268
268
),
269
269
'<div data-something="1" data-something-else="2" dataisnotdashed="3"></div>' ,
270
270
),
You can’t perform that action at this time.
0 commit comments