Skip to content

Commit

Permalink
Verbose pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Sep 10, 2024
1 parent c76af8d commit 86a86a0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions versioned_hdf5/subchunk_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
)
from numpy.typing import NDArray

# Temporary hack to work around pytest issue: if a pure-pyton Cython module is first
# imported by `pytest .` and it contains doctests, it will be imported in pure python
# instead of its compiled form. This fails in CI, as Cython is not a runtime dependency,
# and regardless would cause a lot of type-checking normally performed by Cython to be
# skipped so it is to be avoided.
from . import hyperspace # noqa: F401

if TYPE_CHECKING:
# TODO import from typing and remove quotes (requires Python 3.10)
# TODO use type <name> = ... (requires Python 3.12)
Expand Down

0 comments on commit 86a86a0

Please sign in to comment.