Skip to content

Commit

Permalink
Update Version 3.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
shinny-pack authored and shinny-mayanqiong committed Sep 7, 2023
1 parent 2a2f55d commit 8470165
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 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.7
Version: 3.4.8
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.7'
version = u'3.4.8'
# The full version, including alpha/beta/rc tags.
release = u'3.4.7'
release = u'3.4.8'

# 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.8 (2023/09/07)

* 修复:修正多个 :py:class:`~tqsdk.TqKq` 快期模拟和辅模拟账户 account_key 重复的问题


3.4.7 (2023/08/29)

* 修复::py:class:`~tqsdk.TargetPosTask` 及 :py:class:`~tqsdk.algorithm.twap` 添加纯碱期货 2309 合约及 2310 合约暂不支持的提示
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.7",
version="3.4.8",
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.7'
__version__ = '3.4.8'
4 changes: 2 additions & 2 deletions tqsdk/tradeable/otg/tqkq.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __init__(self, td_url: Optional[str] = None, number: Optional[int] = None):
"""
super().__init__("快期模拟", "", "", td_url=td_url)
super().__init__("快期模拟", str(number) if number else "", "", td_url=td_url)
self._account_no = number

@property
Expand Down Expand Up @@ -133,7 +133,7 @@ def __init__(self, td_url: Optional[str] = None, number: Optional[int] = None):
api.close()
"""
super().__init__("快期股票模拟", "", "", td_url=td_url)
super().__init__("快期股票模拟", str(number) if number else "", "", td_url=td_url)
self._account_no = number

@property
Expand Down

0 comments on commit 8470165

Please sign in to comment.