File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,8 +29,7 @@ def test(session: nox.Session) -> None:
2929@nox .session (name = "test-cli" )
3030def test_cli (session : nox .Session ) -> None :
3131 """Test the command line interface."""
32- session .install ("-r" , "requirements/requires.txt" )
33- session .install ("." , "--no-deps" )
32+ session .install ("." )
3433 session .run ("bmi-render" , "--help" )
3534 session .run ("bmi-render" , "--version" )
3635
Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ classifiers = [
3030 " Topic :: Scientific/Engineering :: Physics" ,
3131]
3232dependencies = [
33- " numpy" ,
3433]
3534dynamic = [
3635 " readme" ,
3736]
3837
3938[project .optional-dependencies ]
39+ dev = [" nox" ]
4040testing = [
4141 " coverage" ,
4242 " pytest" ,
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 88
99from abc import ABC
1010from abc import abstractmethod
11+ from typing import TYPE_CHECKING
1112from typing import Any
1213
13- import numpy as np
14- from numpy .typing import NDArray
14+ if TYPE_CHECKING :
15+ import numpy as np
16+ from numpy .typing import NDArray
1517
1618
1719class Bmi (ABC ):
You can’t perform that action at this time.
0 commit comments