Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
teubert committed Nov 13, 2024
1 parent d0979e2 commit c9b75e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "progpy"
version = "1.7.0"
version = "1.8.0-pre"
dependencies = [
"scipy",
"pandas", # For data downloading features
Expand Down
2 changes: 1 addition & 1 deletion src/progpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import warnings

__version__ = '1.7.0'
__version__ = '1.8.0-pre'

def run_prog_playback(obs, pred, future_loading, output_measurements, **kwargs):
warnings.warn("Depreciated in 1.2.0, will be removed in a future release.", DeprecationWarning)
Expand Down
3 changes: 2 additions & 1 deletion src/progpy/utils/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ class DictLikeMatrixWrapper():
"""

def __init__(self, keys: list, data: Union[dict, np.array]):
""" Initializes the container
"""
Initializes the container
"""
if not isinstance(keys, list):
keys = list(keys) # creates list with keys
Expand Down

0 comments on commit c9b75e3

Please sign in to comment.