Skip to content

Commit 70dfb04

Browse files
authored
Merge branch 'main' into vis-viz
2 parents 3c3d961 + 0a469f5 commit 70dfb04

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# v1.8.2 (2025-01-06)
2+
- Fixed:
3+
- Fixed layout and printing issues (https://github.com/sandialabs/pyttb/pull/354)
4+
- Fixed tutorial hierarchy (https://github.com/sandialabs/pyttb/pull/343)
5+
- Improved:
6+
- Improved `pyttb_utils` (https://github.com/sandialabs/pyttb/pull/353)
7+
- Improved docs for coming from MATLAB (https://github.com/sandialabs/pyttb/pull/352)
8+
- Improved shape support in data classes (https://github.com/sandialabs/pyttb/pull/348)
9+
110
# v1.8.1 (2024-11-11)
211
- Fixed:
312
- Aligning comparison operator output for data classes (https://github.com/sandialabs/pyttb/pull/331)

CITATION.bib

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@misc{pyttb,
22
author = {Dunlavy, Daniel M. and Johnson, Nicholas T. and others},
3-
month = nov,
4-
title = {{pyttb: Python Tensor Toolbox, v1.8.1}},
3+
month = jan,
4+
title = {{pyttb: Python Tensor Toolbox, v1.8.2}},
55
url = {https://github.com/sandialabs/pyttb},
6-
year = {2024}
6+
year = {2025}
77
}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ requires-python = ">=3.9"
1212
dependencies = [
1313
"numpy<3.0,>=1.24",
1414
"numpy_groupies>0.11",
15-
"scipy>1.9",
15+
"scipy<1.15,>1.9",
1616
"matplotlib>3.7",
1717
]
1818

pyttb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from __future__ import annotations
88

9-
__version__ = "1.8.1"
9+
__version__ = "1.8.2"
1010

1111

1212
import warnings

0 commit comments

Comments
 (0)