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:
4141 run : |
4242 conda config --set anaconda_upload yes
4343 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
4545 elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then
4646 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
4848 else
49- conda build --user microsoft . -m conda_build_config.yaml
49+ conda build --user microsoft .
5050 fi
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,25 +8,24 @@ source:
88build :
99 number : 0
1010 script : " {{ PYTHON }} -m pip install . --no-deps -vv"
11- skip : true # [py<37]
1211 binary_relocation : False
1312 missing_dso_whitelist : " *"
1413 entry_points :
1514 - playwright = playwright.__main__:main
1615
1716requirements :
1817 build :
19- - python # [build_platform != target_platform]
18+ - python >=3.8 # [build_platform != target_platform]
2019 - pip # [build_platform != target_platform]
2120 - cross-python_{{ target_platform }} # [build_platform != target_platform]
2221 host :
23- - python
22+ - python >=3.8
2423 - wheel
2524 - pip
2625 - curl
2726 - setuptools_scm
2827 run :
29- - python
28+ - python >=3.8
3029 - greenlet ==3.0.3
3130 - pyee ==11.0.1
3231
You can’t perform that action at this time.
0 commit comments