File tree 2 files changed +4
-4
lines changed
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:
33
33
34
34
git clone git@github.com:YOUR_USERNAME/backtesting.py
35
35
cd backtesting.py
36
- pip3 install -e '.[doc,test,dev]'
36
+ pip install -e '.[doc,test,dev]'
37
37
38
38
[ fork the project ] : https://help.github.com/articles/fork-a-repo/
39
39
Original file line number Diff line number Diff line change 1
1
import os
2
2
import sys
3
3
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 +' )
6
6
7
7
8
8
if __name__ == '__main__' :
55
55
],
56
56
},
57
57
test_suite = "backtesting.test" ,
58
- python_requires = '>=3.6 ' ,
58
+ python_requires = '>=3.9 ' ,
59
59
author = 'Zach Lûster' ,
60
60
classifiers = [
61
61
'Intended Audience :: Financial and Insurance Industry' ,
You can’t perform that action at this time.
0 commit comments