Skip to content

Commit 86e0127

Browse files
committed
MNT: Bump minimum Python>=3.9
1 parent 551e7b0 commit 86e0127

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ first [fork the project]. Then:
3333

3434
git clone [email protected]: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

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import os
22
import 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

88
if __name__ == '__main__':
@@ -55,7 +55,7 @@
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',

0 commit comments

Comments
 (0)