Skip to content

Commit

Permalink
chore: bump version to 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
percevalw committed May 12, 2024
1 parent 7da25a7 commit 98e5bd1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.3.4

- Fix a data_dims access issue
- Marginally improve the speed of handling FoldedTensors in standard torch operations
- Use default torch types (e.g. `torch.float32` or `torch.torch64`)

# v0.3.3

- Handle empty inputs (e.g. `as_folded_tensor([[[], []], [[]]])`) by returning an empty tensor
Expand Down
2 changes: 1 addition & 1 deletion foldedtensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
torch._C.TensorBase.size,
}

__version__ = "0.3.3"
__version__ = "0.3.4"


# noinspection PyMethodOverriding
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
urls.homepage = "https://github.com/aphp/foldedtensor/"
urls.repository = "https://github.com/aphp/foldedtensor/"
dynamic = ["version"]
requires-python = ">3.7.6,<4.0"
requires-python = ">3.7.1,<4.0"

dependencies = [
"torch>1.0.0",
Expand Down

0 comments on commit 98e5bd1

Please sign in to comment.