Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dash lower bound to 2.14.1 #203

Merged
merged 2 commits into from
Dec 12, 2023
Merged
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
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
Loading