From d0e5079b7a51444712a0ae8cf413b0055b29838e Mon Sep 17 00:00:00 2001 From: Martin Kim Date: Thu, 18 Jan 2024 11:02:01 -0800 Subject: [PATCH] Remove approval --- .github/workflows/test_linux.yml | 2 +- .github/workflows/test_linux_pre.yml | 7 ------- .github/workflows/test_macos.yml | 11 ++--------- .github/workflows/test_windows.yml | 11 ++--------- 4 files changed, 5 insertions(+), 26 deletions(-) diff --git a/.github/workflows/test_linux.yml b/.github/workflows/test_linux.yml index ec60324f37..6e32cebf61 100644 --- a/.github/workflows/test_linux.yml +++ b/.github/workflows/test_linux.yml @@ -23,7 +23,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python: ["3.9", "3.10", "3.11", "3.12"] + python: ["3.9", "3.10", "3.11"] name: ${{ matrix.name }} Python ${{ matrix.python }} diff --git a/.github/workflows/test_linux_pre.yml b/.github/workflows/test_linux_pre.yml index c925aa8d40..a0dcd59a26 100644 --- a/.github/workflows/test_linux_pre.yml +++ b/.github/workflows/test_linux_pre.yml @@ -1,10 +1,6 @@ name: Test (Linux, prerelease) on: - push: - branches: [main] - pull_request: - branches: [main] schedule: - cron: "0 10 * * *" # runs at 10:00 UTC -> 03:00 PST every day workflow_dispatch: @@ -26,9 +22,6 @@ jobs: os: [ubuntu-latest] python: ["3.9", "3.10", "3.11", "3.12"] - environment: - name: approved_test - name: ${{ matrix.name }} Python ${{ matrix.python }} env: diff --git a/.github/workflows/test_macos.yml b/.github/workflows/test_macos.yml index f97de340bb..02665e40fa 100644 --- a/.github/workflows/test_macos.yml +++ b/.github/workflows/test_macos.yml @@ -1,10 +1,6 @@ name: Test (MacOS) on: - push: - branches: [main] - pull_request: - branches: [main] schedule: - cron: "0 10 * * *" # runs at 10:00 UTC -> 03:00 PST every day workflow_dispatch: @@ -24,10 +20,7 @@ jobs: fail-fast: false matrix: os: [macos-latest] - python: ["3.9", "3.10", "3.11", "3.12"] - - environment: - name: approved_test + python: ["3.9", "3.10", "3.11"] name: ${{ matrix.name }} Python ${{ matrix.python }} @@ -50,7 +43,7 @@ jobs: - name: Install dependencies run: | - pip install --pre ".[tests]" + pip install ".[tests]" - name: Test env: diff --git a/.github/workflows/test_windows.yml b/.github/workflows/test_windows.yml index 75e98a0c1d..3a1164010d 100644 --- a/.github/workflows/test_windows.yml +++ b/.github/workflows/test_windows.yml @@ -1,10 +1,6 @@ name: Test (Windows) on: - push: - branches: [main] - pull_request: - branches: [main] schedule: - cron: "0 10 * * *" # runs at 10:00 UTC -> 03:00 PST every day workflow_dispatch: @@ -24,10 +20,7 @@ jobs: fail-fast: false matrix: os: [windows-latest] - python: ["3.9", "3.10", "3.11", "3.12"] - - environment: - name: approved_test + python: ["3.9", "3.10", "3.11"] name: ${{ matrix.name }} Python ${{ matrix.python }} @@ -50,7 +43,7 @@ jobs: - name: Install dependencies run: | - pip install --pre ".[tests]" + pip install ".[tests]" - name: Test env: