Skip to content

Commit b55446d

Browse files
committed
Add pytest-doctestplus doc dep
Fix doctest requires Try bumping version of pytest-doctestplus Fixup doctest requires
1 parent cc93f31 commit b55446d

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

docs/tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ Another storage alternative is the :class:`zarr.storage.DBMStore` class, added
809809
in Zarr version 2.2. This class allows any DBM-style database to be used for
810810
storing an array or group. Here is an example using a Berkeley DB B-tree
811811
database for storage (requires `bsddb3
812-
<https://www.jcea.es/programacion/pybsddb.htm>`_ to be installed)::
812+
<https://www.jcea.es/programacion/pybsddb.htm>`_ to be installed):
813813

814814
.. doctest-requires:: bsddb3
815815

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ docs = [
4343
'pydata-sphinx-theme',
4444
'numpydoc',
4545
'numcodecs[msgpack]!=0.14.0',
46+
'pytest-doctestplus',
4647
]
4748

4849
[project.urls]

requirements_dev_optional.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pymongo==4.10.1
1515
# optional test requirements
1616
coverage
1717
pytest-cov==5.0.0
18-
pytest-doctestplus==1.2.1
18+
pytest-doctestplus==1.3.0
1919
pytest-timeout==2.3.1
2020
h5py==3.12.1
2121
fsspec==2023.12.2

zarr/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2067,7 +2067,7 @@ class DBMStore(Store):
20672067
A different database library can be used by passing a different function to
20682068
the `open` parameter. For example, if the `bsddb3
20692069
<https://www.jcea.es/programacion/pybsddb.htm>`_ package is installed, a
2070-
Berkeley DB database can be used::
2070+
Berkeley DB database can be used:
20712071
20722072
.. doctest-requires:: bsddb3
20732073

0 commit comments

Comments
 (0)