Skip to content

Commit

Permalink
Update tf.extractall filter and numpy version
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed Jun 17, 2024
1 parent 2a95bf3 commit f79e901
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def build_deps(pwd: Path, user: str, project: str, version: str):
lf.write(data)

with tarfile.open(ext_dir / tar_filename) as tf:
tf.extractall(ext_dir)
tf.extractall(ext_dir, filter="data")

cmake_bin = get_cmake_bin()
subprocess.check_call(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ include = [
[tool.poetry.dependencies]
appdirs = "*"
cffi = "*"
numpy = "*"
pooch = "*"
pytest = "*"
python = "^3.9"
urllib3 = ">=1.26"
numpy = "^2.0"

[tool.poetry.group.dev.dependencies]
pytest = "^7"
Expand Down

0 comments on commit f79e901

Please sign in to comment.