Skip to content

Commit

Permalink
Limit python and numpy versions and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-omoyele committed Aug 8, 2024
1 parent f3601b0 commit 0efb92e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_assert_raises.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_assert_raises():
"timeSeries has to be of type pandas.DataFrame\(\) or of type np.array\(\) in "
"initialization of object of class TimeSeriesAggregation",
tsam.TimeSeriesAggregation,
timeSeries="erroneousTimeSeries",
timeSeries=raw,
)

# check error messages for wrong attribute names added for extreme period methods
Expand Down
2 changes: 1 addition & 1 deletion tsam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
action="ignore",
category=FutureWarning,
append=True,
#message="The previous implementation of stack is deprecated and will be removed in a future version of pandas. See the What's New notes for pandas 2.1.0 for details. Specify future_stack=True to adopt the new implementation and silence this warning.",
message="*The previous implementation of stack is deprecated.*",
)

0 comments on commit 0efb92e

Please sign in to comment.