Skip to content

Commit b9a5443

Browse files
committed
BLD: skip unnecessary dependencies in conda-build
1 parent 34d6b9b commit b9a5443

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

conda-recipe/bld.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%PYTHON% setup.py install
1+
%PYTHON% -m pip install --no-deps -vv .
22
if errorlevel 1 exit 1
33

44
:: Add more build steps here, if they are necessary.

conda-recipe/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
$PYTHON setup.py install
3+
$PYTHON -m pip install --no-deps -vv .
44

55
# Add more build steps here, if they are necessary.
66

conda-recipe/meta.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,8 @@ app:
2929
requirements:
3030
host:
3131
- python {{ python }}
32+
- pip
3233
- setuptools
33-
- diffpy.pdffit2
34-
- diffpy.structure
35-
- diffpy.utils
3634

3735
run:
3836
- python

0 commit comments

Comments
 (0)