xarray-plotly 0.0.8__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.
Files changed (43) hide show
  1. xarray_plotly-0.0.10/.github/workflows/docs.yml +44 -0
  2. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/PKG-INFO +1 -1
  3. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly.egg-info/PKG-INFO +1 -1
  4. xarray_plotly-0.0.8/.github/workflows/docs.yml +0 -33
  5. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/.github/dependabot.yml +0 -0
  6. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/.github/workflows/ci.yml +0 -0
  7. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/.github/workflows/dependabot-auto-merge.yml +0 -0
  8. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/.github/workflows/release.yml +0 -0
  9. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/.gitignore +0 -0
  10. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/.pre-commit-config.yaml +0 -0
  11. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/CONTRIBUTING.md +0 -0
  12. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/LICENSE +0 -0
  13. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/README.md +0 -0
  14. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/api.md +0 -0
  15. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/examples/combining.ipynb +0 -0
  16. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/examples/datasets.ipynb +0 -0
  17. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/examples/dimensions.ipynb +0 -0
  18. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/examples/fast_bar.ipynb +0 -0
  19. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/examples/figure.ipynb +0 -0
  20. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/examples/kwargs.ipynb +0 -0
  21. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/examples/manipulation.ipynb +0 -0
  22. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/examples/plot-types.ipynb +0 -0
  23. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/getting-started.ipynb +0 -0
  24. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/docs/index.md +0 -0
  25. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/mkdocs.yml +0 -0
  26. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/pyproject.toml +0 -0
  27. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/setup.cfg +0 -0
  28. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/tests/__init__.py +0 -0
  29. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/tests/test_accessor.py +0 -0
  30. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/tests/test_common.py +0 -0
  31. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/tests/test_config.py +0 -0
  32. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/tests/test_figures.py +0 -0
  33. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly/__init__.py +0 -0
  34. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly/accessor.py +0 -0
  35. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly/common.py +0 -0
  36. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly/config.py +0 -0
  37. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly/figures.py +0 -0
  38. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly/plotting.py +0 -0
  39. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly/py.typed +0 -0
  40. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly.egg-info/SOURCES.txt +0 -0
  41. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly.egg-info/dependency_links.txt +0 -0
  42. {xarray_plotly-0.0.8 → xarray_plotly-0.0.10}/xarray_plotly.egg-info/requires.txt +0 -0
  43. {xarray_plotly-0.0.8 → 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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xarray_plotly
3
- Version: 0.0.8
3
+ Version: 0.0.10
4
4
  Summary: Interactive Plotly Express plotting accessor for xarray
5
5
  Author: Felix
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xarray_plotly
3
- Version: 0.0.8
3
+ Version: 0.0.10
4
4
  Summary: Interactive Plotly Express plotting accessor for xarray
5
5
  Author: Felix
6
6
  License: MIT
@@ -1,33 +0,0 @@
1
- name: Docs
2
-
3
- on:
4
- pull_request:
5
- branches: [main]
6
- release:
7
- types: [published]
8
-
9
- permissions:
10
- contents: write
11
-
12
- jobs:
13
- docs:
14
- runs-on: ubuntu-latest
15
-
16
- steps:
17
- - uses: actions/checkout@v6
18
-
19
- - name: Install uv
20
- uses: astral-sh/setup-uv@v7
21
-
22
- - name: Install dependencies
23
- run: uv sync --extra docs
24
-
25
- - name: Build docs
26
- run: uv run mkdocs build
27
-
28
- - name: Deploy to GitHub Pages
29
- if: github.event_name == 'release'
30
- uses: peaceiris/actions-gh-pages@v4
31
- with:
32
- github_token: ${{ secrets.GITHUB_TOKEN }}
33
- publish_dir: ./site
File without changes
File without changes
File without changes
File without changes
File without changes