Skip to content

Commit

Permalink
Bump dash lower bound to 2.14.1 (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
lingyielia authored Dec 12, 2023
1 parent 3a6ca7d commit ace6a1f
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!--
A new scriv changelog fragment.
Uncomment the section that is right (remove the HTML comment wrapper).
-->

<!--
### Highlights ✨
- A bullet item for the Highlights ✨ category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Removed
- A bullet item for the Removed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Added
- A bullet item for the Added category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->

### Changed

- Bump dash lower bound to 2.14.1 ([#203](https://github.com/mckinsey/vizro/pull/203))

<!--
### Deprecated
- A bullet item for the Deprecated category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Fixed
- A bullet item for the Fixed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Security
- A bullet item for the Security category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
5 changes: 4 additions & 1 deletion vizro-core/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ detached = true
scripts = {lint = "SKIP=gitleaks pre-commit run {args:--all-files}"}

[envs.lower-bounds]
extra-dependencies = ["pydantic==1.10.13"]
extra-dependencies = [
"pydantic==1.10.13",
"dash==2.14.1"
]

[publish.index]
disable = true
Expand Down
3 changes: 1 addition & 2 deletions vizro-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.11"
]
dependencies = [
"dash>=2.11", # Needed to support https://dash.plotly.com/duplicate-callback-outputs#setting-allow_duplicate-on-duplicate-outputs.
# 2.11 needed for https://dash.plotly.com/dash-in-jupyter
"dash>=2.14.1", # 2.14.1 needed for compatibility with werkzeug
"dash_bootstrap_components",
"pandas",
"pydantic>=1.10.13", # must be synced with pre-commit mypy hook manually
Expand Down
2 changes: 1 addition & 1 deletion vizro-core/snyk/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dash>=2.11
dash>=2.14.1
dash_bootstrap_components
pandas
pydantic>=1.10.13
Expand Down

0 comments on commit ace6a1f

Please sign in to comment.