Skip to content

Commit 4aec1b5

Browse files
committed
Add notice about ReactPy upper limit change
1 parent 0e12980 commit 4aec1b5

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ Don't forget to remove deprecated code on each major release!
2323

2424
- Fixed regression in v5.1.0 where components would sometimes not output debug messages when `settings.py:DEBUG` is enabled.
2525

26+
### Changed
27+
28+
- Set upper limit on ReactPy version to `<2.0.0`.
29+
2630
## [5.1.0] - 2024-11-24
2731

2832
### Added

pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ classifiers = [
4444
dependencies = [
4545
"channels>=4.0.0",
4646
"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",
4949
"dill>=0.3.5",
5050
"orjson>=3.6.0",
5151
"nest_asyncio>=1.5.0",
@@ -209,6 +209,7 @@ lint.extend-ignore = [
209209
"SIM115", # Use context handler for opening files
210210
"SLF001", # Private member accessed
211211
"E501", # Line too long
212+
"PLC0415", # `import` should be at the top-level of a file
212213
]
213214
lint.preview = true
214215
lint.isort.known-first-party = ["src", "tests"]

0 commit comments

Comments
 (0)