Skip to content

Commit

Permalink
fix: pin numpy dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tconbeer committed Apr 16, 2024
1 parent e04c329 commit cb1abc5
Show file tree
Hide file tree
Showing 5 changed files with 481 additions and 478 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

- Adds a pin to `numpy<2.0`, since pyarrow and other deps are not compatible with v2 but don't
pin their own dependency correctly.

## [0.7.1] - 2024-02-09

- Adds a `backend.source_data` property to exposue the underlying Arrow table, before slicing.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
check:
black .
pytest
ruff . --fix
ruff check . --fix
mypy

.PHONY: lint
lint:
black .
ruff . --fix
ruff check . --fix
mypy

.PHONY: serve
Expand Down
Loading

0 comments on commit cb1abc5

Please sign in to comment.