Skip to content

Commit 45b0eff

Browse files
Merge pull request #1868 from IntelPython/fix-ci-win
Align recipe's meta yaml with conda-forge
2 parents 73112fd + d6e8499 commit 45b0eff

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

conda-recipe/conda_build_config.yaml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
11
numpy:
2-
- 1.23
2+
- '1.23'
3+
c_compiler: # [linux]
4+
- gcc # [linux]
5+
cxx_compiler: # [linux]
6+
- gxx # [linux]
7+
cxx_compiler_version: # [linux]
8+
- '14' # [linux]
9+
c_stdlib: # [linux]
10+
- sysroot # [linux]
11+
c_stdlib_version: # [linux]
12+
- '2.28' # [linux]
13+
c_stdlib: # [win]
14+
- vs # [win]
15+
cxx_compiler: # [win]
16+
- vs2019 # [win]
17+
c_compiler: # [win]
18+
- vs2019 # [win]

conda-recipe/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ requirements:
2222
# TODO: keep in sync with /pyproject.toml
2323
build:
2424
- {{ compiler('cxx') }}
25+
- {{ stdlib('c') }}
2526
- {{ compiler('dpcpp') }} >={{ required_compiler_version }}
26-
- sysroot_linux-64 >=2.28 # [linux]
2727
host:
2828
- python
2929
- pip >=24.0
@@ -57,6 +57,7 @@ test:
5757
requires:
5858
- {{ compiler('c') }}
5959
- {{ compiler('cxx') }}
60+
- {{ stdlib('c') }}
6061
- cython
6162
- setuptools
6263
- pytest

0 commit comments

Comments
 (0)