From d66602b6466ba7285de63e37a759060b3a8061de Mon Sep 17 00:00:00 2001 From: bohd4nx Date: Tue, 14 Apr 2026 02:03:22 +0300 Subject: [PATCH] fix: replace Miniconda setup with Python setup in CI workflow for consistency --- .github/workflows/ci.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 419536f..d0eb952 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,19 +38,12 @@ jobs: steps: - uses: actions/checkout@v6.0.2 - - name: Set up conda (Miniconda) - uses: conda-incubator/setup-miniconda@v3.2.0 + - uses: actions/setup-python@v6.2.0 with: - auto-update-conda: true python-version: ${{ matrix.python-version }} - activate-environment: pyfragment-test - auto-activate: true - conda-remove-defaults: true - name: Install package and dev dependencies - shell: bash -el {0} run: pip install ".[dev]" - name: Run tests - shell: bash -el {0} run: pytest