Skip to content

Commit c29e9d5

Browse files
committed
Fixes conda build
1 parent 43f4e1c commit c29e9d5

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

recipe/bld.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ if not "%GIT_DESCRIBE_NUMBER%"=="0" (
66
)
77
:: -G "Visual Studio 16 2019" specifies the the generator
88
:: -T v142 specifies the toolset
9-
pip install . --no-deps -Ccmake.args="-G Visual Studio 16 2019 -T v142"
9+
pip install . -Ccmake.args="-G Visual Studio 16 2019 -T v142"
1010
if errorlevel 1 exit 1

recipe/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_CIL="${PKG_VERSION}"
1313
if test "${GIT_DESCRIBE_NUMBER}" != "0"; then
1414
export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_CIL="${PKG_VERSION}.dev${GIT_DESCRIBE_NUMBER}+${GIT_DESCRIBE_HASH}"
1515
fi
16-
pip install . --no-deps -Ccmake.args="${extra_args}"
16+
python -m pip install .

recipe/meta.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ test:
3939
requirements:
4040
build:
4141
- python
42-
- numpy {{ numpy }}
4342
- pip
4443
- setuptools >=64
4544
- setuptools_scm >=8
@@ -48,13 +47,8 @@ requirements:
4847
- libgcc-ng # [linux]
4948
- libstdcxx-ng # [linux]
5049
- _openmp_mutex # [linux]
51-
- openmp # [osx]
5250
- vc 14 # [win]
5351
- ninja # [not win]
54-
- ipp-include {{ ipp_version }}
55-
- ipp-devel {{ ipp_version }}
56-
- ipp {{ ipp_version }}
57-
- scikit-build-core >=0.10
5852

5953
run:
6054
- python

0 commit comments

Comments
 (0)