Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update python version #1868

Merged
merged 48 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
ec7bf7f
update python version
SunsetWolf Dec 11, 2024
74b8e00
fix: Correct selector handling and add time filtering in storage.py
you-n-g Dec 11, 2024
0bf8943
fix: convert index and columns to list in repr methods
you-n-g Dec 11, 2024
f9e41a5
feat: Add Makefile for managing project prerequisites
you-n-g Dec 11, 2024
4f01195
feat: Add Cython extensions for rolling and expanding operations
you-n-g Dec 11, 2024
018c631
resolve install error
SunsetWolf Dec 11, 2024
009ee10
fix lint error
SunsetWolf Dec 12, 2024
c54721e
fix lint error
SunsetWolf Dec 12, 2024
58d1e05
fix lint error
SunsetWolf Dec 12, 2024
0e38d61
fix lint error
SunsetWolf Dec 12, 2024
b1685f8
fix lint error
SunsetWolf Dec 12, 2024
40ab983
update build package
SunsetWolf Dec 12, 2024
f0bd5d7
update makefile
SunsetWolf Dec 12, 2024
da9eb5d
update ci yaml
SunsetWolf Dec 12, 2024
d863765
fix docs build error
SunsetWolf Dec 12, 2024
d9da86b
fix ubuntu install error
SunsetWolf Dec 12, 2024
2bef082
fix docs build error
SunsetWolf Dec 12, 2024
4904f3d
fix install error
SunsetWolf Dec 12, 2024
3484fb7
fix install error
SunsetWolf Dec 12, 2024
c182dd4
fix install error
SunsetWolf Dec 12, 2024
da3a49f
fix install error
SunsetWolf Dec 12, 2024
60fcb71
fix pylint error
SunsetWolf Dec 12, 2024
5abfddf
fix pylint error
SunsetWolf Dec 12, 2024
4cf783f
fix pylint error
SunsetWolf Dec 12, 2024
2359552
fix pylint error
SunsetWolf Dec 12, 2024
602ca12
fix pylint error E1123
SunsetWolf Dec 12, 2024
9ea5bac
fix pylint error R0917
SunsetWolf Dec 12, 2024
b2cafd3
fix pytest error
SunsetWolf Dec 12, 2024
dea4c13
fix pytest error
SunsetWolf Dec 13, 2024
6ea6609
fix pytest error
SunsetWolf Dec 13, 2024
1e45aca
update code
SunsetWolf Dec 13, 2024
6848b77
update code
SunsetWolf Dec 13, 2024
067ea77
fix ci error
SunsetWolf Dec 13, 2024
a207d81
fix pylint error
SunsetWolf Dec 13, 2024
0dc0f38
fix black error
SunsetWolf Dec 13, 2024
202fc96
fix pytest error
SunsetWolf Dec 13, 2024
84d9d70
fix CI error
SunsetWolf Dec 13, 2024
89c7a0c
fix CI error
SunsetWolf Dec 13, 2024
ed5d71d
add python version to CI
SunsetWolf Dec 14, 2024
a369253
add python version to CI
SunsetWolf Dec 14, 2024
6a6ff93
add python version to CI
SunsetWolf Dec 14, 2024
27813eb
fix pylint error
SunsetWolf Dec 14, 2024
fd1ba4c
fix pytest general nn error
SunsetWolf Dec 14, 2024
561abaf
fix CI error
SunsetWolf Dec 14, 2024
825deb2
optimize code
SunsetWolf Dec 16, 2024
e67553b
add coments
SunsetWolf Dec 16, 2024
32782ed
Extended macos version
SunsetWolf Dec 16, 2024
47f50ad
remove build package
SunsetWolf Dec 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add python version to CI
  • Loading branch information
SunsetWolf committed Dec 14, 2024
commit ed5d71de41fb8221e4578462da095e5b3f7b36d4
2 changes: 1 addition & 1 deletion .github/workflows/test_qlib_from_source_slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# so we limit the macos version to macos-13.
os: [windows-latest, ubuntu-20.04, ubuntu-22.04, macos-13]
# not supporting 3.6 due to annotations is not supported https://stackoverflow.com/a/52890129
python-version: ["3.8", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Test qlib from source slow
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
name = "pyqlib"
dynamic = ["version"]
description = "A Quantitative-research Platform"
requires-python = ">=3.7.0"
requires-python = ">=3.8.0"

dependencies = [
"pyyaml",
SunsetWolf marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading