Skip to content

Commit

Permalink
use polars when possible
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Oct 10, 2024
1 parent d14c86e commit 530704b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Versioning currently follows `X.Y.Z` where
- `Entity.find_all` returns no values when an empty list is passed as an argument.
- (experimental) app_interface cli "inputs list" does not fail anymore if resources have no "name" field value.

### Changed

- Except for macOS x86_64 (which we assume is Rosetta emulation nowadays), we use the faster `polars` instead of `polars-lts-cpu`.

## \[1.13.8\] - 2024-10-03

This release contains mainly internal changes and ongoing development on the experimental app interface functionality.
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ dependencies = [
"Flask >= 3.0.3",
"rich >= 13.7.1",
"zeep >= 4.2.1",
"polars-lts-cpu >= 0.20.25",
"polars-lts-cpu >= 0.20.25; platform_machine == 'x86_64' and platform_system == 'Darwin'",
"polars >= 0.20.25; platform_machine != 'x86_64' or platform_system != 'Darwin'",
"loguru>=0.7",
"setuptools",
"pydantic",
Expand Down

0 comments on commit 530704b

Please sign in to comment.