Metadata-Version: 2.4
Name: timemachines
Version: 1.0.0
Summary: DEPRECATED: use `skaters` instead. This is a thin shim re-exporting `laplace` from skaters.
Home-page: https://github.com/microprediction/skaters
Author: microprediction
Author-email: peter.cotton@microprediction.com
License: MIT
Classifier: Development Status :: 7 - Inactive
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: skaters>=0.10.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# timemachines ⚠️ DEPRECATED

**`timemachines` is deprecated and has been replaced by [`skaters`](https://github.com/microprediction/skaters).**

`skaters` is a faster, lighter univariate forecasting package that runs in Pyodide. It completely supersedes `timemachines`.

![skating](https://i.imgur.com/elu5muO.png)

## Migrate

```bash
pip install skaters
```

```python
from skaters import laplace
```

## Compatibility shim

For now, `timemachines` is just a thin shim over `skaters`. It re-exports `laplace` so existing imports keep working, and emits a `DeprecationWarning`:

```python
from timemachines import laplace   # still works, but please switch to skaters
```

Everything else that used to live in `timemachines` (the `skaters`/`skatertools` subpackages, the per-package model adapters, evaluation tooling, etc.) has been removed. If you depend on any of it, pin an old release (`timemachines<0.21`) or, better, move to [`skaters`](https://github.com/microprediction/skaters).

## Links

- New package: https://github.com/microprediction/skaters
- Docs: https://skaters.microprediction.org/

MIT licensed.
