Skip to content

Commit ee4a746

Browse files
authored
Hotfix v0.9.1 (#274)
## Overview Changes: * Adds a missing `requirements_docs.txt` entry to `MANIFEST.in` * Bumps the patch version. ## Additional Information Not sure how this file was left out, but this missing file is causing build failures on `conda-forge`. The bug doesn't impact wheels of v0.9.0, but the sources are impacted. Will yank v0.9.0 on PyPI.
2 parents ea28462 + bdcbc1f commit ee4a746

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.9.0"
2+
current_version = "0.9.1"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
44
serialize = ["{major}.{minor}.{patch}"]
55
search = "{current_version}"

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change History
22
==============
33

4+
v0.9.1 (2025-07-03)
5+
^^^^^^^^^^^^^^^^^^^
6+
7+
Changes:
8+
9+
* Fixed the `birdy[docs]` pip installation recipe to include the necessary `requirements_docs.txt` file.
10+
411
v0.9.0 (2025-07-02)
512
^^^^^^^^^^^^^^^^^^^
613

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ include *.rst
44
include LICENSE.txt
55
include requirements.txt
66
include requirements_dev.txt
7+
include requirements_docs.txt
78
include requirements_extra.txt
89
include setup.cfg
910
include docs Makefile make.bat

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ Full `documentation <http://birdy.readthedocs.org/en/latest/>`_ is on ReadTheDoc
5252
:alt: Supported Python Versions
5353

5454
.. |Binder| image:: https://mybinder.org/badge_logo.svg
55-
:target: https://mybinder.org/v2/gh/bird-house/birdy.git/v0.9.0?filepath=notebooks
55+
:target: https://mybinder.org/v2/gh/bird-house/birdy.git/v0.9.1?filepath=notebooks
5656
:alt: Binder Launcher
5757

5858
.. |NBViewer| image:: https://raw.githubusercontent.com/jupyter/design/master/logos/Badges/nbviewer_badge.svg
59-
:target: https://nbviewer.jupyter.org/github/bird-house/birdy/tree/v0.9.0/notebooks/
59+
:target: https://nbviewer.jupyter.org/github/bird-house/birdy/tree/v0.9.1/notebooks/
6060
:alt: NBViewer
6161
:height: 20

birdy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# noqa: D100, D104
22

3-
__version__ = "0.9.0"
3+
__version__ = "0.9.1"
44

55
from .client import WPSClient
66
from .ipyleafletwfs import IpyleafletWFS # noqa: F401

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
# The short X.Y version.
8989
version = ""
9090
# The full version, including alpha/beta/rc tags.
91-
release = "0.9.0"
91+
release = "0.9.1"
9292

9393
# The language for content autogenerated by Sphinx. Refer to documentation
9494
# for a list of supported languages.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
description-file = README.rst
2+
description_file = README.rst
33

44
[tool:pytest]
55
python_files = test_*.py

0 commit comments

Comments
 (0)