holoviz/lumen

--autoreload does not reload on edit

Closed this issue · 2 comments

lumen serve penguins.yaml --autoreload

config:
  title: Palmer Penguins
  theme: dark

sources:
  penguin_source:
    type: file
    tables:
      penguin_table: https://datasets.holoviz.org/penguins/v1/penguins.csv

pipelines:
  penguin_pipeline:
    source: penguin_source
    table: penguin_table
    filters:
      - type: widget
        field: sex
      - type: widget
        field: island
    transforms:
      - type: columns
        columns: ['species', 'island', 'sex', 'year', 'bill_length_mm', 'bill_depth_mm']

layouts:
  - title: Penguins
    pipeline: penguin_pipeline
    layout: [[0], [1, 2]]
    sizing_mode: stretch_width
    height: 800
    views:
      - type: hvplot
        x: bill_length_mm
        y: bill_depth_mm
        kind: scatter
        color: species
        responsive: true
        height: 400
      - type: hvplot
        kind: hist
        y: bill_depth_mm
        responsive: true
        height: 300
      - type: table
        show_index: false
        height: 300
        theme: midnight

Works fine for me. Are you on the latest panel?

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.