xarray-plotly 0.0.9__tar.gz → 0.0.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- xarray_plotly-0.0.10/.github/workflows/docs.yml +44 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/.github/workflows/release.yml +0 -12
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/PKG-INFO +1 -1
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly.egg-info/PKG-INFO +1 -1
- xarray_plotly-0.0.9/.github/workflows/docs.yml +0 -21
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/.github/dependabot.yml +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/.github/workflows/ci.yml +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/.github/workflows/dependabot-auto-merge.yml +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/.gitignore +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/.pre-commit-config.yaml +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/CONTRIBUTING.md +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/LICENSE +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/README.md +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/api.md +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/examples/combining.ipynb +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/examples/datasets.ipynb +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/examples/dimensions.ipynb +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/examples/fast_bar.ipynb +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/examples/figure.ipynb +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/examples/kwargs.ipynb +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/examples/manipulation.ipynb +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/examples/plot-types.ipynb +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/getting-started.ipynb +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/docs/index.md +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/mkdocs.yml +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/pyproject.toml +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/setup.cfg +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/tests/__init__.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/tests/test_accessor.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/tests/test_common.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/tests/test_config.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/tests/test_figures.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly/__init__.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly/accessor.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly/common.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly/config.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly/figures.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly/plotting.py +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly/py.typed +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly.egg-info/SOURCES.txt +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly.egg-info/dependency_links.txt +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly.egg-info/requires.txt +0 -0
- {xarray_plotly-0.0.9 → xarray_plotly-0.0.10}/xarray_plotly.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
name: Docs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches: [main]
|
|
6
|
+
workflow_dispatch: # Manual trigger
|
|
7
|
+
workflow_run:
|
|
8
|
+
workflows: ["Release"]
|
|
9
|
+
types: [completed]
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
contents: write
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
docs:
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
# Run on PR, manual trigger, or successful Release
|
|
18
|
+
if: |
|
|
19
|
+
github.event_name == 'pull_request' ||
|
|
20
|
+
github.event_name == 'workflow_dispatch' ||
|
|
21
|
+
(github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')
|
|
22
|
+
|
|
23
|
+
steps:
|
|
24
|
+
- uses: actions/checkout@v6
|
|
25
|
+
with:
|
|
26
|
+
# For workflow_run, checkout the commit that triggered Release
|
|
27
|
+
ref: ${{ github.event.workflow_run.head_sha || github.ref }}
|
|
28
|
+
|
|
29
|
+
- name: Install uv
|
|
30
|
+
uses: astral-sh/setup-uv@v7
|
|
31
|
+
|
|
32
|
+
- name: Install dependencies
|
|
33
|
+
run: uv sync --extra docs
|
|
34
|
+
|
|
35
|
+
- name: Build docs
|
|
36
|
+
run: uv run mkdocs build
|
|
37
|
+
|
|
38
|
+
- name: Deploy to GitHub Pages
|
|
39
|
+
# Deploy on manual trigger or after successful Release
|
|
40
|
+
if: github.event_name != 'pull_request'
|
|
41
|
+
uses: peaceiris/actions-gh-pages@v4
|
|
42
|
+
with:
|
|
43
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
44
|
+
publish_dir: ./site
|
|
@@ -29,15 +29,3 @@ jobs:
|
|
|
29
29
|
with:
|
|
30
30
|
generate_release_notes: true
|
|
31
31
|
files: dist/*
|
|
32
|
-
|
|
33
|
-
- name: Install docs dependencies
|
|
34
|
-
run: uv sync --extra docs
|
|
35
|
-
|
|
36
|
-
- name: Build docs
|
|
37
|
-
run: uv run mkdocs build
|
|
38
|
-
|
|
39
|
-
- name: Deploy to GitHub Pages
|
|
40
|
-
uses: peaceiris/actions-gh-pages@v4
|
|
41
|
-
with:
|
|
42
|
-
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
43
|
-
publish_dir: ./site
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
name: Docs
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
pull_request:
|
|
5
|
-
branches: [main]
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
docs:
|
|
9
|
-
runs-on: ubuntu-latest
|
|
10
|
-
|
|
11
|
-
steps:
|
|
12
|
-
- uses: actions/checkout@v6
|
|
13
|
-
|
|
14
|
-
- name: Install uv
|
|
15
|
-
uses: astral-sh/setup-uv@v7
|
|
16
|
-
|
|
17
|
-
- name: Install dependencies
|
|
18
|
-
run: uv sync --extra docs
|
|
19
|
-
|
|
20
|
-
- name: Build docs
|
|
21
|
-
run: uv run mkdocs build
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|