Skip to content

Commit d796ac7

Browse files
authored
devops(conda): publish a single version per OS instead of each supported Python version (#2391)
1 parent ac6e957 commit d796ac7

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

conda_build_config.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

meta.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,24 @@ source:
88
build:
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

1716
requirements:
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

0 commit comments

Comments
 (0)