File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed
Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ requires-python = ">=3.8"
3131dependencies = [
3232 " loam>=0.8.0,<0.9.0" ,
3333 " f90nml>=1.4.4" ,
34- " setuptools_scm>=7.1" ,
3534 " numpy>=1.24" ,
3635 " scipy>=1.10" ,
3736 " pandas>=2.0" ,
Original file line number Diff line number Diff line change 2525import sys
2626import typing
2727
28- from setuptools_scm import get_version
29-
3028from . import _styles , config
3129
3230if typing .TYPE_CHECKING :
@@ -86,12 +84,9 @@ def _check_config() -> None:
8684 _PREV_INT = signal .signal (signal .SIGINT , sigint_handler )
8785
8886try :
89- __version__ = get_version (root = ".." , relative_to = __file__ )
90- except LookupError :
91- try :
92- from ._version import version as __version__
93- except ImportError :
94- __version__ = "unknown"
87+ from ._version import version as __version__
88+ except ImportError :
89+ __version__ = "unknown"
9590
9691conf = config .Config .default_ ()
9792if not ISOLATED :
You can’t perform that action at this time.
0 commit comments