Skip to content

Commit d5eec2f

Browse files
authored
Merge pull request #83 from haasad/breaking/remove-macos-support
Remove support for macOS
2 parents 53b301b + c1da59c commit d5eec2f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
strategy:
5757
fail-fast: false
5858
matrix:
59-
os: [ubuntu-latest, windows-latest, macos-latest]
59+
os: [ubuntu-latest, windows-latest]
6060
python-version: ["3.9", "3.10", "3.11", "3.12"]
6161

6262
steps:
@@ -97,7 +97,7 @@ jobs:
9797
strategy:
9898
fail-fast: false
9999
matrix:
100-
os: [ubuntu-latest, windows-latest, macos-latest]
100+
os: [ubuntu-latest, windows-latest]
101101
python-version: ["3.9", "3.10", "3.11", "3.12"]
102102
steps:
103103
- uses: actions/checkout@v4

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ PyPardiso is a python package to solve large sparse linear systems of equations
55

66
PyPardiso provides the same functionality as SciPy's [scipy.sparse.linalg.spsolve](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.spsolve.html#scipy.sparse.linalg.spsolve) for solving the sparse linear system `Ax=b`. However in many cases it is significantly faster than SciPy's built-in single-threaded SuperLU solver.
77

8-
PyPardiso is not a python interface to the PARDISO Solver from the [PARDISO 7.2 Solver Project](https://www.pardiso-project.org/) and it also doesn't currently support complex numbers. Check out [JuliaSparse/Pardiso.jl](https://github.com/JuliaSparse/Pardiso.jl/) for these more advanced use cases.
8+
PyPardiso is not a python interface to the PARDISO Solver from the [PARDISO 7.2 Solver Project](https://www.pardiso-project.org/) and it also doesn't currently support complex numbers. Check out [JuliaSparse/Pardiso.jl](https://github.com/JuliaSparse/Pardiso.jl/) for these more advanced use cases. For macOS users we recommend [scikit-umfpack](https://github.com/scikit-umfpack/scikit-umfpack) as an alternative fast solver, since MKL is not available on Apple silicon.
99

1010
## Installation
1111

12-
PyPardiso runs on Linux, Windows and MacOS. It can be installed with __conda__ or __pip__. It is recommended to install PyPardiso using a virtual environment.
12+
PyPardiso runs on Linux and Windows. It can be installed with __conda__ or __pip__. It is recommended to install PyPardiso using a virtual environment.
1313

1414
conda-forge | PyPI
1515
:---:|:---:

0 commit comments

Comments
 (0)