Skip to content

Commit

Permalink
Bump PyVista for new DynamicScraper features (#632)
Browse files Browse the repository at this point in the history
* Bump PyVista for new DynamicScraper features

* Pre-commit

---------

Co-authored-by: Tetsuo Koyama <[email protected]>
  • Loading branch information
banesullivan and tkoyama010 authored Jan 11, 2024
1 parent 46367f6 commit 416e656
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 6 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,9 @@ clean:
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

# Spin up a local http server to view the rendered documentation.
# This is required for interactive examples to work.
serve-html:
@echo "Serving documentation at http://localhost:11000"
@python -m http.server 11000 --directory "$(BUILDDIR)"/html
4 changes: 1 addition & 3 deletions src/geovista/examples/spatial_index/uber_h3.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,13 @@
from dataclasses import dataclass
from functools import partial
from itertools import combinations
from pathlib import Path

try:
import h3
except ImportError:
emsg = (
"Missing optional dependency 'h3' is required for the "
f"{Path(__file__).stem!r} example. Use pip or conda "
"to install."
"`uber_h3.py` example. Use pip or conda to install."
)
raise ImportError(emsg) from None

Expand Down

0 comments on commit 416e656

Please sign in to comment.