Skip to content

Commit

Permalink
[Mod] 更新版本号到2021.10.25
Browse files Browse the repository at this point in the history
  • Loading branch information
vnpy committed Oct 25, 2021
1 parent 2256158 commit 4f8f393
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# vn.py框架的BYBIT底层接口
# vn.py框架的BYBIT交易接口

<p align="center">
<img src ="https://vnpy.oss-cn-shanghai.aliyuncs.com/vnpy-logo.png"/>
</p>

<p align="center">
<img src ="https://img.shields.io/badge/version-2021.6.21-blueviolet.svg"/>
<img src ="https://img.shields.io/badge/version-2021.10.25-blueviolet.svg"/>
<img src ="https://img.shields.io/badge/platform-windows|linux|macos-yellow.svg"/>
<img src ="https://img.shields.io/badge/python-3.7-blue.svg" />
<img src ="https://img.shields.io/github/license/vnpy/vnpy.svg?color=orange"/>
</p>

## 说明

基于BYBIT交易所的接口开发,支持永续交易
基于BYBIT交易所的接口开发,支持永续合约交易

## 安装

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = vnpy_bybit
version = 2021.6.21
version = 2021.10.25
url = https://www.vnpy.com
license = MIT
author = Xiaoyou Chen
Expand Down
6 changes: 4 additions & 2 deletions vnpy_bybit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,7 @@

from .bybit_gateway import BybitGateway


__version__ = importlib_metadata.version("vnpy_bybit")
try:
__version__ = importlib_metadata.version("vnpy_bybit")
except importlib_metadata.PackageNotFoundError:
__version__ = "dev"

0 comments on commit 4f8f393

Please sign in to comment.