Skip to content

Commit b13faba

Browse files
committed
Update Cargo.toml, pyproject.toml, pyproject.toml, and 2 more files
1 parent d1a80bc commit b13faba

5 files changed

Lines changed: 31 additions & 30 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ tag = "v1.1.1"
3535
ezpz-stubz = { path = "stubz", package = "ezpz-stubz" }
3636

3737
hashbrown = { version = "0.16.0" }
38-
polars = { version = "0.49.1", features = [
38+
polars = { version = "0.50.0", features = [
3939
"dataframe_arithmetic",
4040
"describe",
4141
"dtype-full",
@@ -48,10 +48,11 @@ polars = { version = "0.49.1", features = [
4848
"performant",
4949
"regex",
5050
"strings",
51+
"timezones",
5152
] } # DataFrame library based on Apache Arrow
5253

5354
pyo3 = { version = "*" }
54-
pyo3-polars = { version = "0.22.0", features = ["derive", "dtype-full", "lazy"] }
55+
pyo3-polars = { version = "0.23.1", features = ["derive", "dtype-full", "lazy"] }
5556
pyo3-stub-gen = { version = "0.11.1", default-features = false }
5657

5758
chrono = { version = "0.4.42", features = ["serde"] }

examples/ezpz_tiz/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
authors = [{ "name" = "Stephen Oketch" }]
3-
dependencies = ["ezpz_pluginz", "numpy>=2.3.4", "polars==1.34.0", "pyarrow==22.0.0"]
3+
dependencies = ["ezpz_pluginz", "numpy>=2.3.4", "polars==1.32.0", "pyarrow==22.0.0"]
44
description = "Examples showcasing use of the ezpz-rust-tiz plugin"
55
name = "ezpz_tiz"
66
readme = "README.md"

plugins/ezpz-rust-ti/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
authors = [{ "name" = "Stephen Oketch" }]
3-
dependencies = ["ezpz_pluginz", "polars==1.34.0", "pyarrow==22.0.0"]
3+
dependencies = ["ezpz_pluginz", "polars==1.32.0", "pyarrow==22.0.0"]
44
description = "Technical Indicators for Polars using RustTI"
55
name = "ezpz-rust-ti"
66
readme = "README.md"
Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11
project_plugins:
22
LazyFrame:
33
- polars_ns: LazyFrame
4-
import_: from ezpz_rust_ti._ezpz_rust_ti import VolatilityTI
5-
attr_name: volatility_ti
6-
type_hint: VolatilityTI
4+
import_: from ezpz_rust_ti._ezpz_rust_ti import CorrelationTI
5+
attr_name: correlation_ti
6+
type_hint: CorrelationTI
77
- polars_ns: LazyFrame
8-
import_: from ezpz_rust_ti._ezpz_rust_ti import CandleTI
9-
attr_name: candle_ti
10-
type_hint: CandleTI
8+
import_: from ezpz_rust_ti._ezpz_rust_ti import StrengthTI
9+
attr_name: strength_ti
10+
type_hint: StrengthTI
11+
- polars_ns: LazyFrame
12+
import_: from ezpz_rust_ti._ezpz_rust_ti import OtherTI
13+
attr_name: other_ti
14+
type_hint: OtherTI
15+
- polars_ns: LazyFrame
16+
import_: from ezpz_rust_ti._ezpz_rust_ti import TrendTI
17+
attr_name: trend_ti
18+
type_hint: TrendTI
1119
- polars_ns: LazyFrame
1220
import_: from ezpz_rust_ti._ezpz_rust_ti import BasicTI
1321
attr_name: basic_ti
1422
type_hint: BasicTI
15-
- polars_ns: LazyFrame
16-
import_: from ezpz_rust_ti._ezpz_rust_ti import CorrelationTI
17-
attr_name: correlation_ti
18-
type_hint: CorrelationTI
1923
- polars_ns: LazyFrame
2024
import_: from ezpz_rust_ti._ezpz_rust_ti import MomentumTI
2125
attr_name: momentum_ti
2226
type_hint: MomentumTI
27+
- polars_ns: LazyFrame
28+
import_: from ezpz_rust_ti._ezpz_rust_ti import MATI
29+
attr_name: ma_ti
30+
type_hint: MATI
31+
- polars_ns: LazyFrame
32+
import_: from ezpz_rust_ti._ezpz_rust_ti import CandleTI
33+
attr_name: candle_ti
34+
type_hint: CandleTI
2335
- polars_ns: LazyFrame
2436
import_: from ezpz_rust_ti._ezpz_rust_ti import StandardTI
2537
attr_name: standard_ti
2638
type_hint: StandardTI
2739
- polars_ns: LazyFrame
28-
import_: from ezpz_rust_ti._ezpz_rust_ti import TrendTI
29-
attr_name: trend_ti
30-
type_hint: TrendTI
40+
import_: from ezpz_rust_ti._ezpz_rust_ti import VolatilityTI
41+
attr_name: volatility_ti
42+
type_hint: VolatilityTI
3143
- polars_ns: LazyFrame
3244
import_: from ezpz_rust_ti._ezpz_rust_ti import ChartTrendsTI
3345
attr_name: chart_trends_ti
3446
type_hint: ChartTrendsTI
35-
- polars_ns: LazyFrame
36-
import_: from ezpz_rust_ti._ezpz_rust_ti import MATI
37-
attr_name: ma_ti
38-
type_hint: MATI
39-
- polars_ns: LazyFrame
40-
import_: from ezpz_rust_ti._ezpz_rust_ti import StrengthTI
41-
attr_name: strength_ti
42-
type_hint: StrengthTI
43-
- polars_ns: LazyFrame
44-
import_: from ezpz_rust_ti._ezpz_rust_ti import OtherTI
45-
attr_name: other_ti
46-
type_hint: OtherTI
4747
site_plugins: {}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dev = [
2020
"jupyterlab==4.4.10",
2121
"jupyterthemes==0.20.0",
2222
"pylint==4.0.2",
23-
"pytest>=8.4.2",
23+
"pytest>=9.0.0",
2424
"ruff==0.14.2",
2525
]
2626

0 commit comments

Comments
 (0)