Skip to content

Commit 4af15ee

Browse files
committed
update minimum python version to 3.7
1 parent c465e7f commit 4af15ee

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
with open(os.path.join("requirements", "requirements_test.txt")) as reqs:
2121
REQUIREMENTS_TEST = reqs.readlines()
2222

23-
2423
setup(
2524
name='alpaca-backtrader-api',
2625
version=version,
@@ -30,6 +29,15 @@
3029
author='Alpaca',
3130
author_email='oss@alpaca.markets',
3231
url='https://github.com/alpacahq/alpaca-backtrader-api',
32+
classifiers=[
33+
'Programming Language :: Python :: 3',
34+
'Programming Language :: Python :: 3.7',
35+
'Programming Language :: Python :: 3.8',
36+
'Programming Language :: Python :: 3.9',
37+
38+
# Operating Systems on which it runs
39+
'Operating System :: OS Independent',
40+
],
3341
keywords='financial,timeseries,api,trade,backtrader',
3442
packages=['alpaca_backtrader_api'],
3543
install_requires=REQUIREMENTS,

0 commit comments

Comments
 (0)