File tree Expand file tree Collapse file tree 3 files changed +6
-13
lines changed Expand file tree Collapse file tree 3 files changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ jobs:
41
41
run : |
42
42
conda config --set anaconda_upload yes
43
43
if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then
44
- conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml
44
+ conda build --user microsoft . -m conda_build_config_osx_arm64.yaml
45
45
elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then
46
46
conda install cross-python_linux-aarch64
47
- conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_linux_aarch64.yaml
47
+ conda build --user microsoft . -m conda_build_config_linux_aarch64.yaml
48
48
else
49
- conda build --user microsoft . -m conda_build_config.yaml
49
+ conda build --user microsoft .
50
50
fi
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,25 +8,24 @@ source:
8
8
build :
9
9
number : 0
10
10
script : " {{ PYTHON }} -m pip install . --no-deps -vv"
11
- skip : true # [py<37]
12
11
binary_relocation : False
13
12
missing_dso_whitelist : " *"
14
13
entry_points :
15
14
- playwright = playwright.__main__:main
16
15
17
16
requirements :
18
17
build :
19
- - python # [build_platform != target_platform]
18
+ - python >=3.8 # [build_platform != target_platform]
20
19
- pip # [build_platform != target_platform]
21
20
- cross-python_{{ target_platform }} # [build_platform != target_platform]
22
21
host :
23
- - python
22
+ - python >=3.8
24
23
- wheel
25
24
- pip
26
25
- curl
27
26
- setuptools_scm
28
27
run :
29
- - python
28
+ - python >=3.8
30
29
- greenlet ==3.0.3
31
30
- pyee ==11.0.1
32
31
You can’t perform that action at this time.
0 commit comments