Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: plotly/plotly.py
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1462f3f
Choose a base ref
...
head repository: plotly/plotly.py
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c044f1e
Choose a head ref
  • 9 commits
  • 5 files changed
  • 4 contributors

Commits on Sep 13, 2022

  1. Prevent swallowing of ValueError in core.py

    Traceback that this leads to:
    ```
    File .../python3.9/site-packages/plotly/express/_core.py:2226, in make_figure(args, constructor, trace_patch, layout_patch)
       2223 if args.get("marginal_y") is not None:
       2224     ncols += 1
    -> 2226 fig = init_figure(
       2227     args, subplot_type, frame_list, nrows, ncols, col_labels, row_labels
       2228 )
       2230 # Position traces in subplots
       2231 for frame in frame_list:
    
    File .../python3.9/site-packages/plotly/express/_core.py:2373, in init_figure(args, subplot_type, frame_list, nrows, ncols, col_labels, row_labels)
       2370     _spacing_error_translator(e, "Vertical", "facet_row_spacing")
       2372 # Remove explicit font size of row/col titles so template can take over
    -> 2373 for annot in fig.layout.annotations:
       2374     annot.update(font=None)
       2376 return fig
    
    UnboundLocalError: local variable 'fig' referenced before assignment
    ```
    haydenflinner authored Sep 13, 2022
    Configuration menu
    Copy the full SHA
    e510c6d View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Configuration menu
    Copy the full SHA
    5433a6c View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. Configuration menu
    Copy the full SHA
    85a8ce5 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2025

  1. Configuration menu
    Copy the full SHA
    1b7efe2 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2025

  1. fix indentation

    emilykl committed May 20, 2025
    Configuration menu
    Copy the full SHA
    7250704 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6c25793 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5193 from plotly/fix-5187

    Fix issue breaking `fig.write_image()`
    emilykl authored May 20, 2025
    Configuration menu
    Copy the full SHA
    b7ee03d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1746687 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5194 from plotly/release-6.1.1

    Version bump for 6.1.1
    emilykl authored May 20, 2025
    Configuration menu
    Copy the full SHA
    c044f1e View commit details
    Browse the repository at this point in the history
Loading