Metadata-Version: 2.1
Name: sail-sdk
Version: 0.4.10
Summary: Deprecated: use the sail package instead. Compatibility release of the Sail Python SDK.
Requires-Python: >=3.9
Requires-Dist: sail==0.4.10
Description-Content-Type: text/markdown

# sail-sdk (deprecated)

`sail-sdk` has been renamed to [`sail`](https://pypi.org/project/sail/). Install
the canonical package instead:

```bash
pip install sail
```

This `sail-sdk` release is a thin redirect: it installs the matching `sail`
release for you, so you get the exact same `import sail` package and `sail` CLI.
It stays published so existing installs keep working, but new releases,
documentation, and support all target `sail`.

## Migrating

Replace `sail-sdk` with `sail` in your requirements. Your code does not change:
the import is `import sail` either way.

If you already have an older `sail-sdk` installed, install `sail` directly
rather than upgrading `sail-sdk` in place:

```bash
pip install sail
```

`pip install -U sail-sdk` can leave `import sail` broken during this first
switch. pip installs the new `sail` first, then removes the old `sail-sdk`, and
the old `sail-sdk` owned the `sail` package files. One command restores it:

```bash
pip install --force-reinstall sail
```

The cleanest switch removes `sail-sdk` first, then installs `sail`:

```bash
pip uninstall sail-sdk && pip install sail
```

See the [Sail documentation](https://docs.sailresearch.com) to get started.
