File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ Don't forget to remove deprecated code on each major release!
23
23
24
24
- Fixed regression in v5.1.0 where components would sometimes not output debug messages when ` settings.py:DEBUG ` is enabled.
25
25
26
+ ### Changed
27
+
28
+ - Set upper limit on ReactPy version to ` <2.0.0 ` .
29
+
26
30
## [ 5.1.0] - 2024-11-24
27
31
28
32
### Added
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ classifiers = [
44
44
dependencies = [
45
45
" channels>=4.0.0" ,
46
46
" django>=4.2.0" ,
47
- " reactpy>=1.0 .0, <2.0.0" ,
48
- " reactpy-router>=1.0.0 , <2.0.0" ,
47
+ " reactpy>=1.1 .0, <2.0.0" ,
48
+ " reactpy-router>=1.0.3 , <2.0.0" ,
49
49
" dill>=0.3.5" ,
50
50
" orjson>=3.6.0" ,
51
51
" nest_asyncio>=1.5.0" ,
@@ -209,6 +209,7 @@ lint.extend-ignore = [
209
209
" SIM115" , # Use context handler for opening files
210
210
" SLF001" , # Private member accessed
211
211
" E501" , # Line too long
212
+ " PLC0415" , # `import` should be at the top-level of a file
212
213
]
213
214
lint.preview = true
214
215
lint.isort.known-first-party = [" src" , " tests" ]
You can’t perform that action at this time.
0 commit comments