Skip to content

Commit 9590ef6

Browse files
committed
5.3.2 (compatibility): supports pandas 3.x
1 parent 07798c4 commit 9590ef6

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stock_pandas_rs"
3-
version = "5.3.1"
3+
version = "5.3.2"
44
edition = "2021"
55
authors = ["Kael Zhang <i+pypi@kael.me>"]
66
description = "High-performance Rust implementation for stock-pandas indicators and directive parsing"

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,11 @@ test-rust:
6969
# Run tests with both backends and merge coverage (for 100% coverage)
7070
test-coverage:
7171
@rm -f .coverage .coverage.*
72+
7273
@echo "\033[1m>> Running tests with Python backend... <<\033[0m"
7374
STOCK_PANDAS_COW=1 STOCK_PANDAS_BACKEND=python pytest test/test_$(test_files).py --ignore=test/test_benchmark.py --ignore=test/not_for_rust/ --cov=stock_pandas --cov-report= -q
7475
@echo "\033[1m>> Running tests with Rust backend (appending coverage)... <<\033[0m"
76+
7577
STOCK_PANDAS_COW=1 STOCK_PANDAS_BACKEND=rust pytest test/test_$(test_files).py --ignore=test/test_benchmark.py --ignore=test/not_for_rust/ --cov=stock_pandas --cov-report= --cov-append -q
7678
@echo "\033[1m>> Coverage Report... <<\033[0m"
7779
coverage report --show-missing

0 commit comments

Comments
 (0)