Skip to content

Commit

Permalink
Fix PyPi installs. Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmdunla committed Jul 12, 2022
1 parent c03d72e commit 51cf7f6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v1.3.4 (2022-07-12)
- Fixing issues with PyPi uploads

# v1.3.3 (2022-07-11)
- Fixed indexing bug in `tensor.mttkrp` (Issue #35, PR #36)
- Updated LICENSE to compliant format (Issue #33 , PR #34)
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyttb"
version = "1.3.3"
version = "1.3.4"
description = "Python Tensor Toolbox"
authors = [
{name="Daniel M. Dunlavy", email="[email protected]"},
Expand All @@ -12,6 +12,7 @@ requires-python = ">=3.8"
dependencies = [
"numpy",
"numpy_groupies",
"scipy",
]

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

[build-system]
requires = ["setuptools>=61.0", "numpy", "numpy_groupies", "wheel"]
requires = ["setuptools>=61.0", "numpy", "numpy_groupies", "scipy", "wheel"]
build-backend = "setuptools.build_meta"

2 changes: 1 addition & 1 deletion pyttb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# LLC (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

__version__ = '1.3.3'
__version__ = '1.3.4'

from pyttb.ktensor import ktensor
from pyttb.sptensor import sptensor
Expand Down
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@

setup(
name='pyttb',
version='1.3.3',
version='1.3.4',
packages=['pyttb'],
package_dir={'': '.'},
url='',
license='',
author='Danny Dunlavy, Nick Johnson',
author='Daniel M. Dunlavy',
author_email='',
description='Python Tensor Toolbox (pyttb)',
description='Python Tensor Toolbox',
install_requires=[
"numpy",
"numpy_groupies",
"scipy",
"pytest",
"sphinx_rtd_theme",
"numpy_groupies"
"sphinx_rtd_theme"
]
)

0 comments on commit 51cf7f6

Please sign in to comment.