chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1 @@
|
||||
* @vnpy
|
||||
@@ -0,0 +1,9 @@
|
||||
# 行为准则
|
||||
|
||||
这是一份VeighNa项目社区的行为准则,也是项目作者自己在刚入行量化金融行业时对于理想中的社区的期望:
|
||||
|
||||
* 为交易员而生:作为一款从金融机构量化业务中诞生的交易系统开发框架,设计上都优先满足机构专业交易员的使用习惯,而不是其他用户(散户、爱好者、技术人员等)
|
||||
|
||||
* 对新用户友好,保持耐心:大部分人在接触新东西的时候都是磕磕碰碰、有很多的问题,请记住此时别人对你伸出的援助之手,并把它传递给未来需要的人
|
||||
|
||||
* 尊重他人,慎重言行:礼貌文明的交流方式除了能得到别人同样的回应,更能减少不必要的摩擦,保证高效的交流
|
||||
@@ -0,0 +1,19 @@
|
||||
## 环境
|
||||
|
||||
* 操作系统: 如Windows 11或者Ubuntu 22.04
|
||||
* Python版本: 如VeighNa Studio-4.0.0
|
||||
* VeighNa版本: 如v4.0.0发行版或者dev branch 20250320(下载日期)
|
||||
|
||||
## Issue类型
|
||||
三选一:Bug/Enhancement/Question
|
||||
|
||||
## 预期程序行为
|
||||
|
||||
|
||||
## 实际程序行为
|
||||
|
||||
|
||||
## 重现步骤
|
||||
|
||||
针对Bug类型Issue,请提供具体重现步骤以及报错截图
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
建议每次发起的PR内容尽可能精简,复杂的修改请拆分为多次PR,便于管理合并。
|
||||
|
||||
## 改进内容
|
||||
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
|
||||
## 相关的Issue号(如有)
|
||||
|
||||
Close #
|
||||
@@ -0,0 +1,8 @@
|
||||
# 获取帮助
|
||||
|
||||
在开发和使用VeighNa项目的过程中遇到问题时,获取帮助的渠道包括:
|
||||
|
||||
* Github Issues:[Issues页面](https://github.com/vnpy/vnpy/issues)
|
||||
* 官方QQ群: 262656087
|
||||
* 项目论坛:[VeighNa量化社区](http://www.vnpy.com/forum)
|
||||
* 项目邮箱: vn.py@foxmail.com
|
||||
@@ -0,0 +1,34 @@
|
||||
version: 2
|
||||
|
||||
updates:
|
||||
- package-ecosystem: pip
|
||||
directory: /
|
||||
target-branch: dev
|
||||
open-pull-requests-limit: 5
|
||||
schedule:
|
||||
interval: weekly
|
||||
day: monday
|
||||
time: "09:00"
|
||||
timezone: Asia/Shanghai
|
||||
commit-message:
|
||||
prefix: "chore(deps)"
|
||||
include: scope
|
||||
groups:
|
||||
python:
|
||||
update-types: [minor, patch]
|
||||
|
||||
- package-ecosystem: github-actions
|
||||
directory: /
|
||||
target-branch: dev
|
||||
open-pull-requests-limit: 5
|
||||
schedule:
|
||||
interval: weekly
|
||||
day: monday
|
||||
time: "09:00"
|
||||
timezone: Asia/Shanghai
|
||||
commit-message:
|
||||
prefix: "chore(deps)"
|
||||
include: scope
|
||||
groups:
|
||||
actions:
|
||||
patterns: ["*"]
|
||||
@@ -0,0 +1,41 @@
|
||||
name: Python application
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master, dev]
|
||||
pull_request:
|
||||
branches: [master, dev]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.13"
|
||||
cache: pip
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install ruff mypy uv types-tqdm
|
||||
uv pip install ta-lib==0.6.4 --index=https://pypi.vnpy.com --system
|
||||
uv pip install -e .[alpha,dev] --system
|
||||
|
||||
- name: Lint
|
||||
run: ruff check .
|
||||
|
||||
- name: Type check
|
||||
run: mypy vnpy
|
||||
|
||||
- name: Build
|
||||
run: uv build
|
||||
Reference in New Issue
Block a user