Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ application results can be reproduced here.

## Installation

Python 3.9--3.11 is supported. Clone only this repository and install it from
Python 3.9--3.11 is supported. Install the released package from PyPI:

```bash
python -m pip install aldes
```

For an editable source installation, clone this repository and install it from
the repository root:

```bash
Expand All @@ -34,7 +40,7 @@ python -m pip install -e .
```

The installation automatically downloads the compatible
`autooptlib[aldes]` dependency from the official AutoOptLib GitHub release.
`autooptlib[aldes]` dependency from PyPI.
Users do not need to clone AutoOptLib separately. The Python import name is
lowercase:

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ authors = [
{ name = "Yuhui Shi" },
]
dependencies = [
"autooptlib[aldes] @ git+https://github.com/auto4opt/AutoOptLib.git@v1.3.0",
"autooptlib[aldes]>=1.3,<2",
"numpy>=1.23,<3",
"scipy>=1.9,<2",
]
Expand Down