Skip to content

Commit 6309d5b

Browse files
committed
Fix docs workflow and dependencies.
1 parent 5c6b537 commit 6309d5b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/api/map/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ Map API
66

77

88
.. autoclass:: py123d.datatypes.map_objects.MapLayer
9+
:no-inherited-members:
910
:autoclasstoc:

docs/contributing.md

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

3-
Contributions to 123D are highly encouraged! This guide will help you get started with the development process.
3+
Any contributions to 123D are welcome! This guide both serves as internal tutorial and can help you get started with the development process.
44

55
### Getting Started
66

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ dev = [
6262
"pytest-cov",
6363
]
6464
docs = [
65-
"Sphinx",
65+
"Sphinx<9",
6666
"sphinx-rtd-theme",
6767
"sphinx-autobuild",
6868
"sphinx-copybutton",

src/py123d/api/map/map_api.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,17 +127,16 @@ def query_object_ids(
127127
128128
Notes
129129
-----
130-
The syntax is aligned with STRtree implementation of shapely and the corresponding ``query`` function [1]_.
130+
The syntax is aligned with STRtree implementation of shapely and the corresponding ``query`` function [2]_.
131131
132132
References
133133
----------
134-
.. [1] https://shapely.readthedocs.io/en/latest/strtree.html#shapely.STRtree.query
134+
.. [2] https://shapely.readthedocs.io/en/latest/strtree.html#shapely.STRtree.query
135135
136136
137137
:param geometry: A shapely geometry or an iterable of shapely geometries to query against.
138138
:param layers: The map layers to query against.
139139
:param predicate: An optional spatial predicate to filter the results.
140-
:param sort: Whether to sort the results by distance, defaults to False.
141140
:param distance: An optional maximum distance to filter the results, defaults to None.
142141
:return:
143142
If geometry is a single geometry, a dictionary mapping each layer to a list of map object ids.

0 commit comments

Comments
 (0)