diff --git a/setup.py b/setup.py index 6809c3d..dd785d7 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( "pandas_ta.volatility", "pandas_ta.volume" ], - version=".".join(("0", "2", "43b")), + version=".".join(("0", "2", "44b")), description=long_description, long_description=long_description, author="Kevin Johnson", diff --git a/tests/test_indicator_overlap.py b/tests/test_indicator_overlap.py index df2023d..b8bf9dc 100644 --- a/tests/test_indicator_overlap.py +++ b/tests/test_indicator_overlap.py @@ -108,8 +108,6 @@ class TestOverlap(TestCase): result = pandas_ta.hwma(self.close) self.assertIsInstance(result, Series) self.assertEqual(result.name, "HWMA_0.2_0.1_0.1") - print(f"\n{result.head(30)}") - print(f"\n{result.tail(30)}") def test_kama(self): result = pandas_ta.kama(self.close)