From 13234ede67f096eafbd156ef4a9fc60f9757d95f Mon Sep 17 00:00:00 2001 From: Sermet Pekin <96650846+SermetPekin@users.noreply.github.com> Date: Tue, 21 Oct 2025 09:37:37 +0300 Subject: [PATCH] Modify CI workflow for Windows and Python 3.13 Updated GitHub Actions workflow to run only on Windows with Python 3.13. Removed caching step for pip dependencies. --- .github/workflows/base.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 0056216..2998441 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -17,8 +17,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.10', '3.11', '3.12' , '3.13'] + os: [windows-latest] # ubuntu-latest, macos-latest, + python-version: [ '3.13'] # '3.10', '3.11', '3.12' , fail-fast: false steps: @@ -69,12 +69,6 @@ jobs: - name: Run pytest run: | - python -m pytest tests/ --maxfail=5 --disable-warnings + python -m pytest tests/ --maxfail=5 + - - name: Cache pip dependencies - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }} - restore-keys: | - ${{ runner.os }}-pip-