Skip to content

Commit

Permalink
BUILD: ignore optional packages in meta.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
j-ittner committed May 3, 2023
1 parent 1ca9a6a commit 73a4025
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions condabuild/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,17 @@ test:
- facet.simulation
requires:
- pytest ~= 7.1
# additional requirements of sklearndf
- boruta_py {{ environ.get('FACET_V_BORUTA') }}
- lightgbm {{ environ.get('FACET_V_LIGHTGBM') }}
- scikit-learn {{ environ.get('FACET_V_SCIKIT_LEARN') }}
# we always need lightgbm for testing; version spec is optional
- lightgbm {{ environ.get('FACET_V_LIGHTGBM', '') }}
# optional libraries of sklearndf, needed for testing
- boruta_py {{ environ.get('FACET_V_BORUTA', '[False]') }}
- scikit-learn {{ environ.get('FACET_V_SCIKIT_LEARN', '[False]') }}
# additional requirements of gamma-pytools
- joblib {{ environ.get('FACET_V_JOBLIB') }}
- typing_inspect {{ environ.get('FACET_V_TYPING_INSPECT') }}
- joblib {{ environ.get('FACET_V_JOBLIB', '[False]') }}
- typing_inspect {{ environ.get('FACET_V_TYPING_INSPECT', '[False]') }}
# additional requirements of shap
- ipython {{ environ.get('FACET_V_IPYTHON') }}
- numba {{ environ.get('FACET_V_NUMBA') }}
- ipython {{ environ.get('FACET_V_IPYTHON', '[False]') }}
- numba {{ environ.get('FACET_V_NUMBA', '[False]') }}
commands:
- conda list
- python -c 'import facet;
Expand Down

0 comments on commit 73a4025

Please sign in to comment.