Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

‎setup.py‎

Lines changed: 3 additions & 3 deletions
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)

AltStyle によって変換されたページ (->オリジナル) /