Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
python-version: ["3.10", "3.14"]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
react-version: ["18.2.0"]
react-version: ["19"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ Links "DE#nnn" prior to version 2.0 point to the Dash Enterprise closed-source D
- [#452](https://github.com/plotly/dash-ag-grid/pull/452)
- Added test for `OBJ_MAYBE_FUNCTION_OR_MAP_MAYBE_FUNCTIONS` to test that the value is an object before parsing,
- this allows for reused keys to not comply with being an object
- [#462](https://github.com/plotly/dash-ag-grid/pull/462)
- Updated workflow test targets to Python 3.10, Python 3.14, and React 19.
- Updated dev requirements to `dash[dev,testing]` and added explicit `numpy`/`pandas` dependencies for test/runtime imports in Python CI.

### Fixed
- [#454](https://github.com/plotly/dash-ag-grid/pull/454) fixes issue where a rowCount of 0 would cause the grid not to display new data
Expand Down
4 changes: 3 additions & 1 deletion requires-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
dash[ci,dev,testing]>=2.0
dash[dev,testing]>=2.0
numpy
pandas
dash_mantine_components==0.12.1
pyyaml>=5.0
pytest<8.1.0
Expand Down
Loading