Skip to content

Commit

Permalink
Remove more references to kikuchipy.release file
Browse files Browse the repository at this point in the history
Signed-off-by: Håkon Wiik Ånes <[email protected]>
  • Loading branch information
hakonanes committed Sep 21, 2024
1 parent f8dccae commit d5d3285
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion kikuchipy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ def set_log_level(level: Union[int, str]): # pragma: no cover
"io",
"load",
"pattern",
"release",
"set_log_level",
"signals",
"simulations",
Expand Down
1 change: 0 additions & 1 deletion kikuchipy/_util/tests/test_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ def test_dir(self):
"io",
"load",
"pattern",
"release",
"set_log_level",
"signals",
"simulations",
Expand Down
5 changes: 2 additions & 3 deletions kikuchipy/data/_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,14 @@
import hyperspy.api as hs
import pooch

from kikuchipy import load
from kikuchipy import __version__, load
from kikuchipy.data._registry import registry_hashes, registry_urls
from kikuchipy.release import version
from kikuchipy.signals import EBSD, EBSDMasterPattern

marshall = pooch.create(
path=pooch.os_cache("kikuchipy"),
base_url="",
version=version.replace(".dev", "+"),
version=__version__.replace(".dev", "+"),
version_dev="develop",
env="KIKUCHIPY_DATA_DIR",
registry=registry_hashes,
Expand Down
2 changes: 1 addition & 1 deletion kikuchipy/io/plugins/kikuchipy_h5ebsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
from orix.crystal_map import CrystalMap
from orix.io.plugins.orix_hdf5 import crystalmap2dict, dict2crystalmap

from kikuchipy import __version__ as kikuchipy_version
from kikuchipy.detectors import EBSDDetector
from kikuchipy.io._util import _get_input_variable
from kikuchipy.io.plugins._h5ebsd import H5EBSDReader, _dict2hdf5group, _hdf5group2dict
from kikuchipy.release import version as kikuchipy_version
from kikuchipy.signals.util._crystal_map import _xmap_is_compatible_with_signal

__all__ = ["file_reader", "file_writer"]
Expand Down

0 comments on commit d5d3285

Please sign in to comment.