Skip to content

Commit

Permalink
try build for windows and macos
Browse files Browse the repository at this point in the history
  • Loading branch information
flaport committed Sep 6, 2023
1 parent 8fdd193 commit 69edbdc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ Find more examples in the [examples](./examples) folder.

## Installation

> Eigs is currently linux-only and for python 3.10+. We might ship Windows/MacOS wheels at
> a later point in time.
> Eigs is currently **linux-only** (x86_64) and **python 3.9+**.
> More platforms might be supported at a later point in time.
```bash
pip install eigs
Expand Down
4 changes: 2 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
{ name = "Floris Laporte", email = "floris.laporte@gmail.com" },
]
description = "An efficient complex eigensolver written in Rust."
requires-python = ">=3.10"
requires-python = ">=3.9"
keywords = [
"eigenvalues",
"eigenvectors",
Expand Down Expand Up @@ -44,7 +44,7 @@ include = '\.pyi?$'
reportPrivateImportUsage = false

[tool.cibuildwheel]
build = "*-manylinux_x86_64"
build = ["*-manylinux_x86_64", "*-win_amd64", "*-macosx_x86_64"]
manylinux-x86_64-image = "flaport/manylinux2014_x86_64"

[tool.cibuildwheel.linux]
Expand Down

0 comments on commit 69edbdc

Please sign in to comment.