From 5aa96f7123471596079e5e9241c873d1430fd6df Mon Sep 17 00:00:00 2001 From: Saleh Mir Date: Tue, 11 Feb 2025 19:36:21 +0330 Subject: [PATCH] Remove Windows platform from GitHub Actions workflow - Temporarily disable Windows testing in CI/CD pipeline - Reduce matrix complexity by focusing on Ubuntu and macOS platforms --- .github/workflows/python-package.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index c95e3e6fe..e7b424da7 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -18,7 +18,8 @@ jobs: runs-on: ${{matrix.os}} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + # os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest] # os: [ubuntu-latest] include: - os: ubuntu-latest