Skip to content

Commit 171f628

Browse files
committed
debugging windows and conda
1 parent 1d67cec commit 171f628

2 files changed

Lines changed: 14 additions & 7 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-latest, macos-latest, windows-latest]
19-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
18+
os: [windows-latest] #[ubuntu-latest, macos-latest, windows-latest]
19+
python-version: ["3.10"] #["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v5
@@ -56,7 +56,10 @@ jobs:
5656
- name: Install dependencies (Windows)
5757
if: runner.os == 'Windows'
5858
shell: bash -el {0}
59-
run: python -m pip install .[test]
59+
run: |
60+
python3 -c 'import os; from pathlib import Path; [print(path) for path in Path(os.environ["CONDA_PREFIX"]).rglob("*")]'
61+
python -m pip install .[test]
62+
6063
6164
- name: Test with pytest (non-Windows)
6265
if: runner.os != 'Windows'

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,15 @@ We don't publish binary wheels, because it must be compiled against suite-sparse
127127
128128
`pip uninstall sparseqr` won't remove the generated libraries. It will list them with a warning.
129129
130-
# Tested on
130+
# Tested
131131
132-
- Python 3.9, 3.13.
133-
- Conda and not conda.
134-
- macOS, Ubuntu Linux, and Linux Mint.
132+
GitHub Continuous Integration (CI) tests:
133+
134+
- Python 3.9, 3.10, 3.11, 3.12, 3.13, 3.14.
135+
- macOS, Ubuntu Linux, and Windows.
136+
- conda (Windows) and not conda.
137+
138+
Test manually with:
135139
136140
```
137141
python -m pytest

0 commit comments

Comments
 (0)