Skip to content

Commit

Permalink
Avoid duplicate keys in recipe YAML (conda-forge#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdblischak authored Aug 13, 2024
1 parent fa28942 commit 17406dd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 6 additions & 0 deletions recipe/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@echo on

set TILEDB_PATH=%LIBRARY_PREFIX%

%PYTHON% -m pip install --no-build-isolation --no-deps --ignore-installed -v .
if errorlevel 1 exit 1
6 changes: 6 additions & 0 deletions recipe/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash
set -eux

TILEDB_PATH=${PREFIX}

$PYTHON -m pip install --no-build-isolation --no-deps --ignore-installed -v .
4 changes: 0 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@ source:
sha256: {{ sha256 }}

build:
script: TILEDB_PATH=${PREFIX} {{ PYTHON }} -m pip install --no-build-isolation --no-deps --ignore-installed -v . # [not win]
script: set "TILEDB_PATH=%LIBRARY_PREFIX%" && {{ PYTHON }} -m pip install --no-build-isolation --no-deps --ignore-installed -v . # [win]
number: 0
skip: true # [win32]
skip: true # [win and py2k]
requirements:
build:
- {{ compiler('cxx') }}
Expand Down

0 comments on commit 17406dd

Please sign in to comment.