Skip to content

Commit c9eb1f0

Browse files
Modify build script in meta.yaml
Updated build script to install without dependencies and isolation.
1 parent 1f25198 commit c9eb1f0

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

meta.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ source:
1010
build:
1111
number: 0
1212
noarch: python
13-
script: "{{ PYTHON }} -m pip install . -vv"
13+
#script: "{{ PYTHON }} -m pip install . -vv"
14+
script: |
15+
{{ PYTHON }} -m pip install . --no-deps --no-build-isolation -vv
16+
# --no-deps: Bağımlılıkları pip kurmasın (conda kuracak)
17+
# --no-build-isolation: Daha hızlı build
1418

1519
requirements:
1620
host:

0 commit comments

Comments
 (0)