Skip to content

Commit

Permalink
Merge pull request #141 from monism123/string-formatting-compatibility
Browse files Browse the repository at this point in the history
String formatting compatibility
  • Loading branch information
bukosabino committed Apr 20, 2020
2 parents 528e331 + c7911e6 commit 75b2664
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -14,6 +14,7 @@
install_requires=[
'numpy',
'pandas',
"future-fstrings;python_version<'3.6'",
],
download_url = 'https://github.com/bukosabino/ta/tarball/0.5.18',
keywords = ['technical analysis', 'python3', 'pandas'],
Expand Down
1 change: 1 addition & 0 deletions ta/trend.py
@@ -1,3 +1,4 @@
# -*- coding: future_fstrings -*-
"""
.. module:: trend
:synopsis: Trend Indicators.
Expand Down
1 change: 1 addition & 0 deletions ta/volume.py
@@ -1,3 +1,4 @@
# -*- coding: future_fstrings -*-
"""
.. module:: volume
:synopsis: Volume Indicators.
Expand Down
1 change: 1 addition & 0 deletions ta/wrapper.py
@@ -1,3 +1,4 @@
# -*- coding: future_fstrings -*-
"""
.. module:: wrapper
:synopsis: Wrapper of Indicators.
Expand Down

0 comments on commit 75b2664

Please sign in to comment.