Skip to content

Commit

Permalink
Another PR to prepare the release (#1336)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt authored May 6, 2024
1 parent 7a0498d commit c2873cf
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 10 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ repos:
rev: v0.1.14
hooks:
- id: clean-notebook
args: [-i, tags]
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
hooks:
Expand Down
1 change: 1 addition & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
},
],
'pygment_dark_style': 'material',
'announcement': "hvPlot 0.10 has just been released! Checkout the <a href='https://blog.holoviz.org/posts/hvplot_release_0.10/'>blog post</a> and support hvPlot by giving it a 🌟 on <a href='https://github.com/holoviz/hvplot'>Github</a>.",
}
)

Expand Down
4 changes: 2 additions & 2 deletions doc/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

See [the HoloViz blog](https://blog.holoviz.org/#category=hvplot) for a visual summary of the major features added in a selection of releases.

## Version 0.10.0 (2024-05-02)
## Version 0.10.0 (2024-05-06)

This minor release brings a number of enhancements and bugfixes.
This minor release brings a number of enhancements and bugfixes, checkout the [release blog post](https://blog.holoviz.org/posts/hvplot_release_0.10/) for a visual summary of the most important enhancements.

- 🧰 Improving the contributor experience: moving away from `pyctdev` to a more usual and easier approach, and adopt `ruff` as a linter and formatter
- 📦 Modernizing hvPlot's packaging: migrating to `pyproject.toml`
Expand Down
6 changes: 5 additions & 1 deletion doc/user_guide/Large_Timeseries.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,11 @@
"cell_type": "code",
"execution_count": null,
"id": "39ff4ae1",
"metadata": {},
"metadata": {
"tags": [
"hide-cell"
]
},
"outputs": [],
"source": [
"# Cell hidden on the website (hide-cell in tags)\n",
Expand Down
2 changes: 1 addition & 1 deletion envs/py3.10-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ dependencies:
- xyzservices>=2022.9.0
- pip
- pip:
- -e .. --no-deps
- -e ..
2 changes: 1 addition & 1 deletion envs/py3.11-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ dependencies:
- xyzservices>=2022.9.0
- pip
- pip:
- -e .. --no-deps
- -e ..
2 changes: 1 addition & 1 deletion envs/py3.11-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ dependencies:
- xyzservices>=2022.9.0
- pip
- pip:
- -e .. --no-deps
- -e ..
2 changes: 1 addition & 1 deletion envs/py3.12-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ dependencies:
- xyzservices>=2022.9.0
- pip
- pip:
- -e .. --no-deps
- -e ..
2 changes: 1 addition & 1 deletion envs/py3.8-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ dependencies:
- xyzservices>=2022.9.0
- pip
- pip:
- -e .. --no-deps
- -e ..
2 changes: 1 addition & 1 deletion envs/py3.9-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ dependencies:
- xyzservices>=2022.9.0
- pip
- pip:
- -e .. --no-deps
- -e ..
2 changes: 1 addition & 1 deletion scripts/update_conda_envs.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():
with open(file, 'a', encoding='utf-8') as f:
f.write(' - pip\n')
f.write(' - pip:\n')
f.write(' - -e .. --no-deps\n')
f.write(' - -e ..\n')


if __name__ == '__main__':
Expand Down

0 comments on commit c2873cf

Please sign in to comment.