mirror of
https://github.com/microsoft/qlib.git
synced 2026-06-06 05:51:17 +08:00
* update python version * fix: Correct selector handling and add time filtering in storage.py * fix: convert index and columns to list in repr methods * feat: Add Makefile for managing project prerequisites * feat: Add Cython extensions for rolling and expanding operations * resolve install error * fix lint error * fix lint error * fix lint error * fix lint error * fix lint error * update build package * update makefile * update ci yaml * fix docs build error * fix ubuntu install error * fix docs build error * fix install error * fix install error * fix install error * fix install error * fix pylint error * fix pylint error * fix pylint error * fix pylint error * fix pylint error E1123 * fix pylint error R0917 * fix pytest error * fix pytest error * fix pytest error * update code * update code * fix ci error * fix pylint error * fix black error * fix pytest error * fix CI error * fix CI error * add python version to CI * add python version to CI * add python version to CI * fix pylint error * fix pytest general nn error * fix CI error * optimize code * add coments * Extended macos version * remove build package --------- Co-authored-by: Young <afe.young@gmail.com>
53 lines
605 B
Plaintext
53 lines
605 B
Plaintext
# https://github.com/github/gitignore/blob/master/Python.gitignore
|
|
__pycache__/
|
|
|
|
*.pyc
|
|
*.pyd
|
|
*.so
|
|
*.ipynb
|
|
.ipynb_checkpoints
|
|
_build
|
|
build/
|
|
dist/
|
|
|
|
*.pkl
|
|
*.hd5
|
|
*.csv
|
|
|
|
.env
|
|
.vim
|
|
.nvimrc
|
|
.vscode
|
|
|
|
qlib/VERSION.txt
|
|
qlib/data/_libs/expanding.cpp
|
|
qlib/data/_libs/rolling.cpp
|
|
examples/estimator/estimator_example/
|
|
examples/rl/data/
|
|
examples/rl/checkpoints/
|
|
examples/rl/outputs/
|
|
examples/rl_order_execution/data/
|
|
examples/rl_order_execution/outputs/
|
|
|
|
*.egg-info/
|
|
|
|
# test related
|
|
test-output.xml
|
|
.output
|
|
.data
|
|
|
|
# special software
|
|
mlruns/
|
|
|
|
tags
|
|
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.vscode/
|
|
|
|
*.swp
|
|
|
|
./pretrain
|
|
.idea/
|
|
.aider*
|