Skip to content

Commit cfbf865

Browse files
Merge pull request #74 from CDCgov/rr-73-max-versions
set max
2 parents fd81ce7 + 65a9286 commit cfbf865

2 files changed

Lines changed: 32 additions & 24 deletions

File tree

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,16 @@ and this project adheres to [Calendar Versioning](https://calver.org/).
77
The versioning pattern is `YYYY.MM.DD.micro(a/b/{none if release})
88

99
---
10+
## [2026.04.02.0]
11+
12+
### Added
13+
14+
- set a maximum for package dependencies to prevent breaking changes.
15+
1016
## [2026.03.31.0]
1117

18+
### Fixed
19+
1220
- updated polars lazyframe loading to correctly reference the Blob file without downloading
1321

1422
## [2026.03.02.0]

pyproject.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cfa.dataops"
3-
version = "2026.03.31.0"
3+
version = "2026.04.02.0"
44
description = "Data cataloging, ETL, modeling, verification, and validation for CFA"
55
authors = [
66
{ name = "Phil Rogers", email = "ap66@cdc.gov" },
@@ -10,29 +10,29 @@ readme = "README.md"
1010
requires-python = ">=3.10,<4.0"
1111
dependencies = [
1212
"cfa-cloudops @ git+https://github.com/CDCgov/cfa-cloudops.git",
13-
"tomli (>=2.2.1)",
14-
"httpx (>=0.28.1)",
15-
"mako (>=1.3.9)",
16-
"duckdb (>=1.2.0)",
17-
"tqdm (>=4.67.1)",
18-
"pyarrow (>=19.0.1)",
19-
"fastparquet (>=2024.11.0)",
20-
"matplotlib (~=3.9)",
21-
"pandas (>=2.2.3)",
22-
"polars (>=1.26.0)",
23-
"altair (>=5.5.0)",
24-
"vl-convert-python (>=1.7.0)",
25-
"pandera[pandas] (>=0.24.0)",
26-
"papermill (>=2.6.0)",
27-
"ipywidgets (>=8.1.7)",
28-
"itables (>=2.4.4)",
29-
"ipykernel (>=6.30.0)",
30-
"nbconvert (>=7.16.6)",
31-
"jupyter (>=1.1.1)",
32-
"jupyterlab (>=4.4.5)",
33-
"rich (>=14.1.0)",
34-
"pydantic (>=2.11.7)",
35-
"faker (>=37.8.0)",
13+
"tomli (>=2.2.1,<2.5.0)",
14+
"httpx (>=0.28.1,<0.29.0)",
15+
"mako (>=1.3.9,<1.4.0)",
16+
"duckdb (>=1.2.0,<1.6.0)",
17+
"tqdm (>=4.67.1,<4.68.0)",
18+
"pyarrow (>=19.0.1,<24.0.0)",
19+
"fastparquet (>=2025.12.0,<2026.0.0)",
20+
"matplotlib (~=3.9,<3.11.0)",
21+
"pandas (>=2.2.3,<2.4.0)",
22+
"polars (>=1.26.0,<1.40.0)",
23+
"altair (>=5.5.0,<6.1.0)",
24+
"vl-convert-python (>=1.7.0,<1.10.0)",
25+
"pandera[pandas] (>=0.24.0,<0.31.0)",
26+
"papermill (>=2.6.0,<2.8.0)",
27+
"ipywidgets (>=8.1.7,<8.1.9)",
28+
"itables (>=2.4.4,<2.8.0)",
29+
"ipykernel (>=6.30.0,<6.32.0)",
30+
"nbconvert (>=7.16.6,<7.18.0)",
31+
"jupyter (>=1.1.1,<1.2.0)",
32+
"jupyterlab (>=4.4.5,<4.6.0)",
33+
"rich (>=14.1.0,<14.4.0)",
34+
"pydantic (>=2.11.7,<2.13.0)",
35+
"faker (>=37.8.0,<40.12.0)",
3636
]
3737

3838
[tool.poetry]

0 commit comments

Comments
 (0)