diff --git a/CHANGES.rst b/CHANGES.rst index 7d240d6..54d7db2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,14 +1,14 @@ Change History ************** -0.8.5 (unreleased) +0.8.5 (2024-03-13) ================== Changes: * Update how TIFF files are converted to xarray datasets because `open_rasterio` is deprecated. See issue `239`. * Remove `GeotiffRasterioConverter` - +* Remove Python 3.7 and 3.8 from CI test suite 0.8.4 (2023-05-24) ================== diff --git a/README.rst b/README.rst index b648404..f0ed701 100644 --- a/README.rst +++ b/README.rst @@ -48,10 +48,10 @@ Full `documentation `_ is on ReadTheDoc :alt: Join the chat at https://gitter.im/bird-house/birdhouse .. |Binder| image:: https://mybinder.org/badge_logo.svg - :target: https://mybinder.org/v2/gh/bird-house/birdy.git/v0.8.4?filepath=notebooks + :target: https://mybinder.org/v2/gh/bird-house/birdy.git/v0.8.5?filepath=notebooks :alt: Binder Launcher .. |NBViewer| image:: https://raw.githubusercontent.com/jupyter/design/master/logos/Badges/nbviewer_badge.svg - :target: https://nbviewer.jupyter.org/github/bird-house/birdy/tree/v0.8.4/notebooks/ + :target: https://nbviewer.jupyter.org/github/bird-house/birdy/tree/v0.8.5/notebooks/ :alt: NBViewer :height: 20 diff --git a/birdy/__init__.py b/birdy/__init__.py index 69f59fd..6011471 100644 --- a/birdy/__init__.py +++ b/birdy/__init__.py @@ -1,6 +1,6 @@ # noqa: D100, D104 -__version__ = "0.8.4" +__version__ = "0.8.5" from .client import WPSClient from .ipyleafletwfs import IpyleafletWFS # noqa: F401 diff --git a/docs/source/conf.py b/docs/source/conf.py index 4927f47..e5c2736 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -79,7 +79,7 @@ # The short X.Y version. version = "" # The full version, including alpha/beta/rc tags. -release = "0.8.4" +release = "0.8.5" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 082c41a..99af874 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.4 +current_version = 0.8.5 commit = True tag = False diff --git a/setup.py b/setup.py index bb4f7c0..6b76cc5 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,9 @@ def parse_reqs(file): "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Scientific/Engineering :: Atmospheric Science", ]