Skip to content

Commit 49339e5

Browse files
committed
upgrade requirements
1 parent a5706df commit 49339e5

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

requirements.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
six==1.13.0
2-
simplejson==3.17.0
1+
six==1.16.0
2+
simplejson==3.17.3
33
delorean==1.0.0
4-
pandas==0.25.3
5-
python-dateutil==2.8.1
6-
pytz==2019.3
7-
pyasn1==0.4.2
8-
rsa==4.0
9-
stomp.py==4.1.22
10-
enum34==1.1.6
4+
pandas==1.3.0
5+
python-dateutil==2.8.2
6+
pytz==2021.1
7+
pyasn1==0.4.8
8+
rsa==4.7.2
9+
stomp.py==4.1.24
10+
enum34==1.1.10
1111
getmac==0.8.2

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55
@author: gaoan
66
"""
77
from os import path
8+
89
from setuptools import find_packages, setup
910

1011
with open(path.join(path.abspath(path.dirname(__file__)), 'requirements.txt')) as f:
1112
install_requires = f.read()
1213

1314
setup(
1415
name='tigeropen',
15-
version='1.4.0',
16+
version='2.0.0',
1617
description='TigerBrokers Open API',
1718
packages=find_packages(exclude=[]),
1819
author='TigerBrokers',
@@ -26,10 +27,11 @@
2627
'Programming Language :: Python',
2728
'Operating System :: Microsoft :: Windows',
2829
'Operating System :: Unix',
29-
'Programming Language :: Python :: 2.7',
3030
'Programming Language :: Python :: 3.4',
3131
'Programming Language :: Python :: 3.5',
3232
'Programming Language :: Python :: 3.6',
3333
'Programming Language :: Python :: 3.7',
34+
'Programming Language :: Python :: 3.8',
35+
'Programming Language :: Python :: 3.9',
3436
],
3537
)

0 commit comments

Comments
 (0)