Skip to content

Commit 51cf7f6

Browse files
committed
Fix PyPi installs. Bump version.
1 parent c03d72e commit 51cf7f6

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v1.3.4 (2022-07-12)
2+
- Fixing issues with PyPi uploads
3+
14
# v1.3.3 (2022-07-11)
25
- Fixed indexing bug in `tensor.mttkrp` (Issue #35, PR #36)
36
- Updated LICENSE to compliant format (Issue #33 , PR #34)

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyttb"
3-
version = "1.3.3"
3+
version = "1.3.4"
44
description = "Python Tensor Toolbox"
55
authors = [
66
{name="Daniel M. Dunlavy", email="[email protected]"},
@@ -12,6 +12,7 @@ requires-python = ">=3.8"
1212
dependencies = [
1313
"numpy",
1414
"numpy_groupies",
15+
"scipy",
1516
]
1617

1718
classifiers = [
@@ -26,6 +27,6 @@ coverage = "https://coveralls.io/github/sandialabs/pyttb"
2627
documentation = "https://pyttb.readthedocs.io"
2728

2829
[build-system]
29-
requires = ["setuptools>=61.0", "numpy", "numpy_groupies", "wheel"]
30+
requires = ["setuptools>=61.0", "numpy", "numpy_groupies", "scipy", "wheel"]
3031
build-backend = "setuptools.build_meta"
3132

pyttb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# LLC (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
33
# U.S. Government retains certain rights in this software.
44

5-
__version__ = '1.3.3'
5+
__version__ = '1.3.4'
66

77
from pyttb.ktensor import ktensor
88
from pyttb.sptensor import sptensor

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,19 @@
66

77
setup(
88
name='pyttb',
9-
version='1.3.3',
9+
version='1.3.4',
1010
packages=['pyttb'],
1111
package_dir={'': '.'},
1212
url='',
1313
license='',
14-
author='Danny Dunlavy, Nick Johnson',
14+
author='Daniel M. Dunlavy',
1515
author_email='',
16-
description='Python Tensor Toolbox (pyttb)',
16+
description='Python Tensor Toolbox',
1717
install_requires=[
1818
"numpy",
19+
"numpy_groupies",
20+
"scipy",
1921
"pytest",
20-
"sphinx_rtd_theme",
21-
"numpy_groupies"
22+
"sphinx_rtd_theme"
2223
]
2324
)

0 commit comments

Comments
 (0)