Skip to content

Commit

Permalink
Merge branch 'main' into v2
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeing committed Feb 26, 2024
2 parents c514f16 + 78af8ed commit 6f89cd6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@
"sklearn",
]

# linkcheck for stackoverflow gets HTTP 403 in CI environment
linkcheck_ignore = [r"https://stackoverflow\.com/.*"]

# type annotations configuration
autodoc_typehints = "description"
napoleon_use_param = True
napoleon_use_rtype = False
Expand Down
2 changes: 1 addition & 1 deletion tests/test_osmnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ def test_features() -> None:

# features_from_bbox - bounding box query to return no data
with pytest.raises(ox._errors.InsufficientResponseError):
gdf = ox.features_from_bbox(bbox=(0.009, -0.009, 0.009, -0.009), tags={"building": True})
gdf = ox.features_from_bbox(bbox=(-2.000, -2.001, -2.000, -2.001), tags={"building": True})

# features_from_bbox - successful
gdf = ox.features_from_bbox(bbox, tags=tags1)
Expand Down

0 comments on commit 6f89cd6

Please sign in to comment.