Skip to content

Commit

Permalink
Update release note (#483)
Browse files Browse the repository at this point in the history
* Update release note

* update readme
  • Loading branch information
goodwanghan authored Jun 11, 2023
1 parent e600dad commit 891e193
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,16 @@ Fugue can be installed through pip or conda. For example:
pip install fugue
```

In order to use Fugue SQL, it is strongly recommended to install the `sql` extra:

```bash
pip install fugue[sql]
```

It also has the following installation extras:

* **spark**: to support Spark as the [ExecutionEngine](https://fugue-tutorials.readthedocs.io/tutorials/advanced/execution_engine.html)
* **sql**: to support Fugue SQL. Without this extra, the non-SQL part still works. Before Fugue 0.9.0, this extra is included in Fugue's core dependency so you don't need to install explicitly. **But for 0,9.0+, this becomes required if you want to use Fugue SQL.**
* **spark**: to support Spark as the [ExecutionEngine](https://fugue-tutorials.readthedocs.io/tutorials/advanced/execution_engine.html).
* **dask**: to support Dask as the ExecutionEngine.
* **ray**: to support Ray as the ExecutionEngine.
* **duckdb**: to support DuckDB as the ExecutionEngine, read [details](https://fugue-tutorials.readthedocs.io/tutorials/integrations/backends/duckdb.html).
Expand Down
7 changes: 7 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release Notes

## 0.8.5

- [481](https://github.com/fugue-project/fugue/pull/481) Moved Fugue SQL dependencies into functions as soft dependencies
- [478](https://github.com/fugue-project/fugue/issues/478) Removed cloudpickle from the hard dependency of Spark backend
- [477](https://github.com/fugue-project/fugue/issues/477) Removed tests folder from Fugue package
- [476](https://github.com/fugue-project/fugue/issues/476) Fix compatibility issues for Pandas 2+ and Spark < 3.4

## 0.8.4

- [471](https://github.com/fugue-project/fugue/issues/471) Fix compatibility issues for duckdb 0.8.0+
Expand Down

0 comments on commit 891e193

Please sign in to comment.