File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ first [fork the project]. Then:
3333
3434 git clone git@github.com:YOUR_USERNAME/backtesting.py
3535 cd backtesting.py
36- pip3 install -e '.[doc,test,dev]'
36+ pip install -e '.[doc,test,dev]'
3737
3838[ fork the project ] : https://help.github.com/articles/fork-a-repo/
3939
Original file line number Diff line number Diff line change 11import os
22import sys
33
4- if sys .version_info < (3 , 6 ):
5- sys .exit ('ERROR: Backtesting.py requires Python 3.6 +' )
4+ if sys .version_info < (3 , 9 ):
5+ sys .exit ('ERROR: Backtesting.py requires Python 3.9 +' )
66
77
88if __name__ == '__main__' :
5555 ],
5656 },
5757 test_suite = "backtesting.test" ,
58- python_requires = '>=3.6 ' ,
58+ python_requires = '>=3.9 ' ,
5959 author = 'Zach Lûster' ,
6060 classifiers = [
6161 'Intended Audience :: Financial and Insurance Industry' ,
You can’t perform that action at this time.
0 commit comments