xarray-plotly 0.0.8__tar.gz → 0.0.9__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 (42) hide show
  1. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/.github/workflows/docs.yml +0 -12
  2. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/.github/workflows/release.yml +12 -0
  3. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/PKG-INFO +1 -1
  4. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly.egg-info/PKG-INFO +1 -1
  5. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/.github/dependabot.yml +0 -0
  6. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/.github/workflows/ci.yml +0 -0
  7. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/.github/workflows/dependabot-auto-merge.yml +0 -0
  8. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/.gitignore +0 -0
  9. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/.pre-commit-config.yaml +0 -0
  10. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/CONTRIBUTING.md +0 -0
  11. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/LICENSE +0 -0
  12. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/README.md +0 -0
  13. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/api.md +0 -0
  14. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/examples/combining.ipynb +0 -0
  15. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/examples/datasets.ipynb +0 -0
  16. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/examples/dimensions.ipynb +0 -0
  17. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/examples/fast_bar.ipynb +0 -0
  18. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/examples/figure.ipynb +0 -0
  19. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/examples/kwargs.ipynb +0 -0
  20. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/examples/manipulation.ipynb +0 -0
  21. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/examples/plot-types.ipynb +0 -0
  22. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/getting-started.ipynb +0 -0
  23. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/docs/index.md +0 -0
  24. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/mkdocs.yml +0 -0
  25. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/pyproject.toml +0 -0
  26. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/setup.cfg +0 -0
  27. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/tests/__init__.py +0 -0
  28. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/tests/test_accessor.py +0 -0
  29. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/tests/test_common.py +0 -0
  30. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/tests/test_config.py +0 -0
  31. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/tests/test_figures.py +0 -0
  32. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly/__init__.py +0 -0
  33. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly/accessor.py +0 -0
  34. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly/common.py +0 -0
  35. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly/config.py +0 -0
  36. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly/figures.py +0 -0
  37. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly/plotting.py +0 -0
  38. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly/py.typed +0 -0
  39. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly.egg-info/SOURCES.txt +0 -0
  40. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly.egg-info/dependency_links.txt +0 -0
  41. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly.egg-info/requires.txt +0 -0
  42. {xarray_plotly-0.0.8 → xarray_plotly-0.0.9}/xarray_plotly.egg-info/top_level.txt +0 -0
@@ -3,11 +3,6 @@ name: Docs
3
3
  on:
4
4
  pull_request:
5
5
  branches: [main]
6
- release:
7
- types: [published]
8
-
9
- permissions:
10
- contents: write
11
6
 
12
7
  jobs:
13
8
  docs:
@@ -24,10 +19,3 @@ jobs:
24
19
 
25
20
  - name: Build docs
26
21
  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
@@ -29,3 +29,15 @@ 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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xarray_plotly
3
- Version: 0.0.8
3
+ Version: 0.0.9
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.9
4
4
  Summary: Interactive Plotly Express plotting accessor for xarray
5
5
  Author: Felix
6
6
  License: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes