-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor prefix and name parsing to use current env if no option is explicitly set * modify meta.yaml for local building/testing
- Loading branch information
Showing
3 changed files
with
35 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,41 @@ | ||
# this recipe is for local building | ||
# see https://github.com/conda-forge/conda-tree-feedstock/blob/master/recipe/meta.yaml | ||
# for the conda-forge recipe | ||
|
||
package: | ||
name: conda-tree | ||
version: "0.0.5" | ||
version: dev | ||
|
||
source: | ||
git_url: https://github.com/rvalieris/conda-tree.git | ||
git_rev: v0.0.5 | ||
path: . | ||
|
||
build: | ||
number: 0 | ||
noarch: python | ||
script: | ||
- "{{ PYTHON }} -m pip install . --no-deps -vv" | ||
entry_points: | ||
- conda-tree = conda_tree:main | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
- setuptools | ||
|
||
run: | ||
- python | ||
- networkx | ||
- conda | ||
|
||
build: | ||
number: 0 | ||
noarch: generic | ||
script: | ||
- "{{ PYTHON }} -m pip install . --no-deps -vv" | ||
entry_points: | ||
- conda-tree = conda_tree:main | ||
|
||
test: | ||
commands: | ||
- conda-tree -h | ||
|
||
about: | ||
home: https://github.com/rvalieris/conda-tree | ||
license: MIT | ||
license_family: MIT | ||
license_file: LICENSE | ||
summary: 'conda dependency tree helper' | ||
dev_url: https://github.com/rvalieris/conda-tree | ||
doc_url: https://github.com/rvalieris/conda-tree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters