Skip to content

Commit

Permalink
Update Version 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
shinny-pack authored and shinny-mayanqiong committed Jul 6, 2023
1 parent 69c88fb commit c91522b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: tqsdk
Version: 3.4.2
Version: 3.4.3
Summary: TianQin SDK
Home-page: https://www.shinnytech.com/tqsdk
Author: TianQin
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = u'3.4.2'
version = u'3.4.3'
# The full version, including alpha/beta/rc tags.
release = u'3.4.2'
release = u'3.4.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 5 additions & 0 deletions doc/version.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

版本变更
=============================
3.4.3 (2023/07/06)

* 增加: 支持获取 CSI 指数行情


3.4.2 (2023/05/17)

* api:某些 pandas 版本下,web_gui 不更新绘制序列
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name='tqsdk',
version="3.4.2",
version="3.4.3",
description='TianQin SDK',
author='TianQin',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion tqsdk/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.4.2'
__version__ = '3.4.3'
2 changes: 1 addition & 1 deletion tqsdk/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _has_md_grants(self, symbol):
for symbol in symbol_list:
if symbol.split('.', 1)[0] in ["SHFE", "DCE", "CZCE", "INE", "CFFEX", "KQ", "SSWE", "GFEX"] and self._has_feature("futr"):
continue
elif symbol.split('.', 1)[0] in ["SSE", "SZSE"] and self._has_feature("sec"):
elif symbol.split('.', 1)[0] in ["CSI", "SSE", "SZSE"] and self._has_feature("sec"):
continue
elif symbol in ["SSE.000016", "SSE.000300", "SSE.000905", "SSE.000852"] and self._has_feature("lmt_idx"):
continue
Expand Down

0 comments on commit c91522b

Please sign in to comment.