Skip to content

Commit

Permalink
release v0.3.3 解决 rqalpha examples -d . 无样例策略生成的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
EricWang committed Feb 14, 2017
1 parent ea1615f commit c45d86a
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.3.3
==================

- 解决 `rqalpha examples -d .` 无样例策略生成的问题

0.3.2
==================

Expand Down
5 changes: 5 additions & 0 deletions docs/source/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
History
==================

0.3.3
==================

- 解决 `rqalpha examples -d .` 无样例策略生成的问题

0.3.2
==================

Expand Down
2 changes: 1 addition & 1 deletion rqalpha/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.2
0.3.3
33 changes: 33 additions & 0 deletions rqalpha/examples/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
#
# Copyright 2017 Ricequant, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""
RQAlpha - a Algorithm Trading System
"""

import pkgutil

__all__ = [
'__version__',
'version_info'
]

__version__ = pkgutil.get_data(__package__, 'VERSION.txt').decode('ascii').strip()

version_info = tuple(int(v) if v.isdigit() else v
for v in __version__.split('.'))

del pkgutil

0 comments on commit c45d86a

Please sign in to comment.