Skip to content

Commit 23c8c05

Browse files
committed
setup: Add MSIS to 'tests' extra requirements
The level-2 post processing integration tests needs MSIS to really run successfully. Also actually enables the `extras_require` in the setup call, otherwise `pip` doesn't know anything about them.
1 parent bdae2ef commit 23c8c05

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
extras_require = {
1212
"msis": ["nrlmsise00"],
13-
"tests": ["pytest"],
13+
"tests": ["nrlmsise00", "pytest"],
1414
}
1515
extras_require["all"] = sorted(
1616
{v for req in extras_require.values() for v in req},
@@ -84,6 +84,7 @@ def find_meta(meta, *path):
8484
'george',
8585
'emcee',
8686
],
87+
extras_require=extras_require,
8788
license='GPLv2',
8889
classifiers=[
8990
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)