Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve/fix multiple-output recipe #14

Merged
merged 2 commits into from
Jul 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion recipe/build_base.sh
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
${PYTHON} -m pip install . -vv
#!/bin/bash
set -euo pipefail

${PYTHON} -m pip install . --no-deps -vv
11 changes: 5 additions & 6 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,12 @@ source:
sha256: c2edb73a08e9e0e6f65a0e6af18b059b8b1cdd5bef997d7a0b181df93dc81539

build:
number: 2
number: 3
noarch: python
entry_points:
- black = black:patched_main
- blackd = blackd:patched_main

test:
commands:
- black --help

outputs:
- name: {{ name }}
script: build_base.sh
Expand All @@ -37,7 +33,10 @@ outputs:
- typed-ast >=1.4.0
- regex
- pathspec >=0.6,<1

test:
commands:
- black --help

- name: {{ name }}d
build:
noarch: python
Expand Down