8000 Add plotly[express] extra for easily installing Plotly Express dependencies by ndrezn · Pull Request #4644 · plotly/plotly.py · GitHub
[go: up one dir, main page]

Skip to content

Add plotly[express] extra for easily installing Plotly Express dependencies #4644

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

Merged
merged 21 commits into from
Nov 22, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix formatting
  • Loading branch information
ndrezn committed Oct 18, 2024
commit 285f270c95a7ac21212dd3e82edd7ac77c456664
8 changes: 6 additions & 2 deletions packages/python/plotly/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,9 @@ def overwrite_plotlyjs_version_file(plotlyjs_version):
# DO NOT EDIT
# This file is generated by the updatebundle setup.py command
__plotlyjs_version__ = "{plotlyjs_version}"
""".format(plotlyjs_version=plotlyjs_version)
""".format(
plotlyjs_version=plotlyjs_version
)
)


Expand All @@ -288,7 +290,9 @@ def overwrite_plotlywidget_version_file(version):
#
# It is edited by hand prior to official releases
__frontend_version__ = "{version}"
""".format(version=version)
""".format(
version=version
)
)


Expand Down
0