From c1e951312706f17790ad1e32631546588184832d Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 13:35:11 +0000 Subject: [PATCH 01/18] stuff --- .github/workflows/publish.yml | 22 ++++- 2211.patch | 136 ++++++++++++++++++++++++++ conda_build_config_linux_aarch64.yaml | 2 + conda_build_config_osx_arm64.yaml | 2 + meta.yaml | 4 + 5 files changed, 163 insertions(+), 3 deletions(-) create mode 100644 2211.patch create mode 100644 conda_build_config_linux_aarch64.yaml create mode 100644 conda_build_config_osx_arm64.yaml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cc729ae1e..168d92dc0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,14 +6,24 @@ jobs: deploy-conda: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + include: + - os: ubuntu-latest + target-platform: linux-64 + - os: ubuntu-latest + target-platform: linux-aarch64 + - os: windows-latest + target-platform: win-64 + - os: macos-latest + target-platform: osx-64 + - os: macos-latest + target-platform: osx-arm64 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Get conda - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: python-version: 3.9 channels: conda-forge @@ -24,4 +34,10 @@ jobs: ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }} run: | conda config --set anaconda_upload yes - conda build --user microsoft . + if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then + conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml + elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then + conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_linux_aarch64.yaml + else + conda build --user microsoft . -m conda_build_config.yaml + fi diff --git a/2211.patch b/2211.patch new file mode 100644 index 000000000..75acbb05a --- /dev/null +++ b/2211.patch @@ -0,0 +1,136 @@ +From c139df7cbc23cf90d517183263b92ccdbc25a066 Mon Sep 17 00:00:00 2001 +From: Tobias Fischer +Date: Tue, 26 Dec 2023 20:28:36 +1000 +Subject: [PATCH 1/5] Add osx-arm64 and linux-aarch64 conda package builds + +--- + .github/workflows/publish.yml | 14 ++++++++++++-- + 1 file changed, 12 insertions(+), 2 deletions(-) + +diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml +index cc729ae1e..4a0a6e6c9 100644 +--- a/.github/workflows/publish.yml ++++ b/.github/workflows/publish.yml +@@ -6,7 +6,17 @@ jobs: + deploy-conda: + strategy: + matrix: +- os: [ubuntu-latest, windows-latest, macos-latest] ++ include: ++ - os: ubuntu-latest ++ target-platform: linux-64 ++ - os: ubuntu-latest ++ target-platform: linux-aarch64 ++ - os: windows-latest ++ target-platform: win-64 ++ - os: macos-latest ++ target-platform: osx-64 ++ - os: macos-latest ++ target-platform: osx-arm64 + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 +@@ -24,4 +34,4 @@ jobs: + ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }} + run: | + conda config --set anaconda_upload yes +- conda build --user microsoft . ++ conda build --target-platform=${{ matrix.target-platform }} --user microsoft . + +From d95b875ec438ebfbee7775381e272e71d23d0bee Mon Sep 17 00:00:00 2001 +From: Tobias Fischer +Date: Tue, 26 Dec 2023 20:32:06 +1000 +Subject: [PATCH 2/5] Add cross-compile build requirements + +--- + meta.yaml | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/meta.yaml b/meta.yaml +index 8eb97274f..49e2260b0 100644 +--- a/meta.yaml ++++ b/meta.yaml +@@ -15,6 +15,10 @@ build: + - playwright = playwright.__main__:main + + requirements: ++ build: ++ - python # [build_platform != target_platform] ++ - pip # [build_platform != target_platform] ++ - cross-python_{{ target_platform }} # [build_platform != target_platform] + host: + - python + - wheel + +From 48267bb3ffb4d4cd61828cd055e6a7f106372772 Mon Sep 17 00:00:00 2001 +From: Tobias Fischer +Date: Thu, 4 Jan 2024 11:28:42 +1000 +Subject: [PATCH 3/5] Create conda_build_config_osx_arm64.yaml + +--- + conda_build_config_osx_arm64.yaml | 2 ++ + 1 file changed, 2 insertions(+) + create mode 100644 conda_build_config_osx_arm64.yaml + +diff --git a/conda_build_config_osx_arm64.yaml b/conda_build_config_osx_arm64.yaml +new file mode 100644 +index 000000000..d535f7252 +--- /dev/null ++++ b/conda_build_config_osx_arm64.yaml +@@ -0,0 +1,2 @@ ++target_platform: ++- osx-arm64 + +From 21fcde25f831e121492243656f5a644eb76bd1da Mon Sep 17 00:00:00 2001 +From: Tobias Fischer +Date: Thu, 4 Jan 2024 11:28:59 +1000 +Subject: [PATCH 4/5] Create conda_build_config_linux_aarch64.yaml + +--- + conda_build_config_linux_aarch64.yaml | 2 ++ + 1 file changed, 2 insertions(+) + create mode 100644 conda_build_config_linux_aarch64.yaml + +diff --git a/conda_build_config_linux_aarch64.yaml b/conda_build_config_linux_aarch64.yaml +new file mode 100644 +index 000000000..68dceb2e3 +--- /dev/null ++++ b/conda_build_config_linux_aarch64.yaml +@@ -0,0 +1,2 @@ ++target_platform: ++- linux-aarch64 + +From 8944ff82e7340b987de4854747aab161d606e30b Mon Sep 17 00:00:00 2001 +From: Tobias Fischer +Date: Thu, 4 Jan 2024 13:32:12 +1000 +Subject: [PATCH 5/5] Fixup target platform using build configs + +--- + .github/workflows/publish.yml | 10 ++++++++-- + 1 file changed, 8 insertions(+), 2 deletions(-) + +diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml +index 4a0a6e6c9..168d92dc0 100644 +--- a/.github/workflows/publish.yml ++++ b/.github/workflows/publish.yml +@@ -23,7 +23,7 @@ jobs: + with: + fetch-depth: 0 + - name: Get conda +- uses: conda-incubator/setup-miniconda@v2 ++ uses: conda-incubator/setup-miniconda@v3 + with: + python-version: 3.9 + channels: conda-forge +@@ -34,4 +34,10 @@ jobs: + ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }} + run: | + conda config --set anaconda_upload yes +- conda build --target-platform=${{ matrix.target-platform }} --user microsoft . ++ if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then ++ conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml ++ elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then ++ conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_linux_aarch64.yaml ++ else ++ conda build --user microsoft . -m conda_build_config.yaml ++ fi diff --git a/conda_build_config_linux_aarch64.yaml b/conda_build_config_linux_aarch64.yaml new file mode 100644 index 000000000..68dceb2e3 --- /dev/null +++ b/conda_build_config_linux_aarch64.yaml @@ -0,0 +1,2 @@ +target_platform: +- linux-aarch64 diff --git a/conda_build_config_osx_arm64.yaml b/conda_build_config_osx_arm64.yaml new file mode 100644 index 000000000..d535f7252 --- /dev/null +++ b/conda_build_config_osx_arm64.yaml @@ -0,0 +1,2 @@ +target_platform: +- osx-arm64 diff --git a/meta.yaml b/meta.yaml index 85deaf23b..3bd5a8824 100644 --- a/meta.yaml +++ b/meta.yaml @@ -15,6 +15,10 @@ build: - playwright = playwright.__main__:main requirements: + build: + - python # [build_platform != target_platform] + - pip # [build_platform != target_platform] + - cross-python_{{ target_platform }} # [build_platform != target_platform] host: - python - wheel From 0614b1433cc6d5906e05a2b96f887257e5978650 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 13:46:43 +0000 Subject: [PATCH 02/18] test something --- .github/workflows/publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 168d92dc0..175c7badf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,9 +13,9 @@ jobs: target-platform: linux-aarch64 - os: windows-latest target-platform: win-64 - - os: macos-latest + - os: macos-latest-large target-platform: osx-64 - - os: macos-latest + - os: macos-latest-xlarge target-platform: osx-arm64 runs-on: ${{ matrix.os }} steps: @@ -37,6 +37,7 @@ jobs: if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then + conda install cross-python_linux-aarch64 conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_linux_aarch64.yaml else conda build --user microsoft . -m conda_build_config.yaml From f0969c6ce9a6514080c75b104187190ed3e5fe9a Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 13:47:23 +0000 Subject: [PATCH 03/18] test --- .github/workflows/publish.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 175c7badf..62a2aa753 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,7 +1,13 @@ name: Upload Python Package on: - release: - types: [published] + push: + branches: + - main + - release-* + pull_request: + branches: + - main + - release-* jobs: deploy-conda: strategy: @@ -30,15 +36,13 @@ jobs: - name: Prepare run: conda install anaconda-client conda-build conda-verify - name: Build and Upload - env: - ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }} run: | conda config --set anaconda_upload yes if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then - conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml + conda build . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then conda install cross-python_linux-aarch64 - conda build --user microsoft . -m conda_build_config.yaml -m conda_build_config_linux_aarch64.yaml + conda build . -m conda_build_config.yaml -m conda_build_config_linux_aarch64.yaml else - conda build --user microsoft . -m conda_build_config.yaml + conda build . -m conda_build_config.yaml fi From 2bf42d7ec537e1651d85d25eec7f988b1682efe0 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 16:27:06 +0200 Subject: [PATCH 04/18] Update publish.yml --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 62a2aa753..f081f0c89 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,7 +29,7 @@ jobs: with: fetch-depth: 0 - name: Get conda - uses: conda-incubator/setup-miniconda@v3 + uses: conda-incubator/setup-miniconda@v2 with: python-version: 3.9 channels: conda-forge From 6fb0a878102fa378325e9493bd0201a8bb04820b Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 16:30:53 +0200 Subject: [PATCH 05/18] Update publish.yml --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f081f0c89..f4f1e7a76 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,10 +29,11 @@ jobs: with: fetch-depth: 0 - name: Get conda - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: python-version: 3.9 channels: conda-forge + miniconda-version: latest - name: Prepare run: conda install anaconda-client conda-build conda-verify - name: Build and Upload From 119fc0bb4cbecc0056e234c15a9f605c42d24d86 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 16:33:06 +0200 Subject: [PATCH 06/18] Update publish.yml --- .github/workflows/publish.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f4f1e7a76..23a62cd41 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,6 @@ jobs: run: conda install anaconda-client conda-build conda-verify - name: Build and Upload run: | - conda config --set anaconda_upload yes if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then conda build . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then From 5ddcbc8fcab1869993841a53b0f3a6a5a97f5f71 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 16:37:15 +0200 Subject: [PATCH 07/18] Update publish.yml --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 23a62cd41..d6abb7eb9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -37,6 +37,7 @@ jobs: - name: Prepare run: conda install anaconda-client conda-build conda-verify - name: Build and Upload + shell: bash run: | if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then conda build . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml From df3f6acfae4e4543895583405a6572b937963df7 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 16:50:23 +0200 Subject: [PATCH 08/18] Update publish.yml --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d6abb7eb9..4a78a3e60 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,6 +36,7 @@ jobs: miniconda-version: latest - name: Prepare run: conda install anaconda-client conda-build conda-verify + shell: bash - name: Build and Upload shell: bash run: | From 6092acb04113a14428cd748849316d744344d58c Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 16:59:48 +0200 Subject: [PATCH 09/18] Update publish.yml --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4a78a3e60..ce88a63fd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -35,7 +35,7 @@ jobs: channels: conda-forge miniconda-version: latest - name: Prepare - run: conda install anaconda-client conda-build conda-verify + run: conda install conda-build conda-verify shell: bash - name: Build and Upload shell: bash From e0e43d40d4c79710a396e8e963ac07fb17720343 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 17:05:00 +0200 Subject: [PATCH 10/18] Update publish.yml --- .github/workflows/publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ce88a63fd..43751c125 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,9 +36,11 @@ jobs: miniconda-version: latest - name: Prepare run: conda install conda-build conda-verify - shell: bash + # Required for conda-incubator/setup-miniconda@v3 + shell: bash -l {0} - name: Build and Upload - shell: bash + # Required for conda-incubator/setup-miniconda@v3 + shell: bash -l {0} run: | if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then conda build . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml From 40854e141a09d0966f6b75e0f99f2cdb414ba1d7 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 17:09:10 +0200 Subject: [PATCH 11/18] Update publish.yml --- .github/workflows/publish.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 43751c125..6ac3d11c4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,6 +24,10 @@ jobs: - os: macos-latest-xlarge target-platform: osx-arm64 runs-on: ${{ matrix.os }} + defaults: + run: + # Required for conda-incubator/setup-miniconda@v3 + shell: bash -el {0} steps: - uses: actions/checkout@v3 with: @@ -31,16 +35,12 @@ jobs: - name: Get conda uses: conda-incubator/setup-miniconda@v3 with: - python-version: 3.9 + python-version: 3.12 channels: conda-forge miniconda-version: latest - name: Prepare run: conda install conda-build conda-verify - # Required for conda-incubator/setup-miniconda@v3 - shell: bash -l {0} - name: Build and Upload - # Required for conda-incubator/setup-miniconda@v3 - shell: bash -l {0} run: | if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then conda build . -m conda_build_config.yaml -m conda_build_config_osx_arm64.yaml From 38cd4648f79ee87b2d0caefdd121994c08a5a50f Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 17:13:15 +0200 Subject: [PATCH 12/18] Update publish.yml --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6ac3d11c4..753bc45c9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,7 +39,7 @@ jobs: channels: conda-forge miniconda-version: latest - name: Prepare - run: conda install conda-build conda-verify + run: conda install anaconda-client conda-build conda-verify - name: Build and Upload run: | if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then From 08759a01c3fb7cdc71d318bbba84f1c411bd198f Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 17:21:59 +0200 Subject: [PATCH 13/18] Update publish.yml --- .github/workflows/publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 753bc45c9..a40eda00b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,16 +11,17 @@ on: jobs: deploy-conda: strategy: + fail-fast: false matrix: include: - os: ubuntu-latest - target-platform: linux-64 + target-platform: linux-x86_64 - os: ubuntu-latest target-platform: linux-aarch64 - os: windows-latest target-platform: win-64 - os: macos-latest-large - target-platform: osx-64 + target-platform: osx-intel - os: macos-latest-xlarge target-platform: osx-arm64 runs-on: ${{ matrix.os }} From ac3d7d35bddb7dae7265a3811fc074f431123575 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 17:24:17 +0200 Subject: [PATCH 14/18] Update publish.yml --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a40eda00b..95ae7fcf9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,6 +39,7 @@ jobs: python-version: 3.12 channels: conda-forge miniconda-version: latest + conda-version: 24.1.2 - name: Prepare run: conda install anaconda-client conda-build conda-verify - name: Build and Upload From 26a4a85b5046ccaef1931f6eeffb4c218b5aef07 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 17:28:34 +0200 Subject: [PATCH 15/18] Update publish.yml --- .github/workflows/publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 95ae7fcf9..b8d3a17fc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,9 +39,8 @@ jobs: python-version: 3.12 channels: conda-forge miniconda-version: latest - conda-version: 24.1.2 - name: Prepare - run: conda install anaconda-client conda-build conda-verify + run: conda install anaconda-client conda-build=24.1.2 conda-verify - name: Build and Upload run: | if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then From 2336afeaaa74a4e91a9dd534921fadaaacefdd79 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 17:36:55 +0200 Subject: [PATCH 16/18] Update publish.yml --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b8d3a17fc..af3f5b74a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,7 +40,7 @@ jobs: channels: conda-forge miniconda-version: latest - name: Prepare - run: conda install anaconda-client conda-build=24.1.2 conda-verify + run: conda install anaconda-client conda-build=24.1.2 conda-verify py-lief=0.12.3 - name: Build and Upload run: | if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then From 945a10feb2f36c75614514534692446877771f72 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 18:15:33 +0200 Subject: [PATCH 17/18] Update meta.yaml --- meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta.yaml b/meta.yaml index 3bd5a8824..1fae00151 100644 --- a/meta.yaml +++ b/meta.yaml @@ -37,7 +37,7 @@ test: - playwright.sync_api - playwright.async_api commands: - - playwright --help + - playwright --help # [build_platform == target_platform] about: home: https://github.com/microsoft/playwright-python From 68893cd5380e05c599f60cfd6cca439ea041ebce Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 2 Apr 2024 16:27:13 +0000 Subject: [PATCH 18/18] move test --- meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta.yaml b/meta.yaml index 1fae00151..8f7020d18 100644 --- a/meta.yaml +++ b/meta.yaml @@ -29,7 +29,7 @@ requirements: - python - greenlet ==3.0.3 - pyee ==11.0.1 -test: +test: # [build_platform == target_platform] requires: - pip imports: @@ -37,7 +37,7 @@ test: - playwright.sync_api - playwright.async_api commands: - - playwright --help # [build_platform == target_platform] + - playwright --help about: home: https://github.com/microsoft/playwright-python