Skip to content

Commit 41f914a

Browse files
committed
Use all pips, no conda; add cache
1 parent 60eac13 commit 41f914a

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/unittest-macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
32+
cache: "pip"
3233
- name: Print system info
3334
run: sw_vers; python --version; arch
3435
- name: Install build tools

.github/workflows/unittest-windows.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,10 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v4
2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: conda-incubator/setup-miniconda@v3
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
32-
auto-activate-base: true
33-
auto-update-conda: true
34-
- name: Show environment
35-
shell: powershell
36-
run: |
37-
conda info
38-
conda list
32+
cache: "pip"
3933
- name: Install build tools
4034
shell: powershell
4135
run: |

.github/workflows/unitttest-ubuntu.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
32+
cache: "pip"
3233
- name: Install build tools
3334
run: |
3435
python -m pip install --upgrade "pip<24.1" "setuptools==73.0.1"

0 commit comments

Comments
 (0)