Skip to content

Commit bed1fab

Browse files
Merge pull request #57 from CDCgov/rr-56-loosen-deps
Rr 56 loosen dependencies
2 parents be2b265 + 970bb5a commit bed1fab

2 files changed

Lines changed: 26 additions & 22 deletions

File tree

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ 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.01.05.0a]
11+
12+
### Fixed
13+
14+
- Removed upper limits on package dependencies for additional flexibility with newer versions.
1015

1116
## [2025.12.10.0]
1217

pyproject.toml

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,38 @@
11
[project]
22
name = "cfa.dataops"
3-
version = "2025.12.10.0"
3+
version = "2026.01.05.0a"
44
description = "Data cataloging, ETL, modeling, verification, and validation for CFA"
55
authors = [
66
{ name = "Phil Rogers", email = "ap66@cdc.gov" },
77
{ name = "Ryan Raasch", email = "xng3@cdc.gov" },
88
]
99
readme = "README.md"
10-
requires-python = ">=3.10,<3.11"
10+
requires-python = ">=3.10,<4.0"
1111
dependencies = [
1212
"cfa-cloudops @ git+https://github.com/CDCgov/cfa-cloudops.git",
13-
"tomli (>=2.2.1,<3.0.0)",
14-
"httpx (>=0.28.1,<0.29.0)",
15-
"mako (>=1.3.9,<2.0.0)",
16-
"duckdb (>=1.2.0,<2.0.0)",
17-
"tqdm (>=4.67.1,<5.0.0)",
18-
"pyarrow (>=19.0.1,<20.0.0)",
19-
"fastparquet (>=2024.11.0,<2025.0.0)",
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)",
2020
"matplotlib (~=3.9)",
2121
"pandas (>=2.2.3)",
2222
"polars (>=1.26.0)",
23-
"tqdm (>=4.67.0)",
24-
"altair (>=5.5.0,<6.0.0)",
25-
"vl-convert-python (>=1.7.0,<2.0.0)",
23+
"altair (>=5.5.0)",
24+
"vl-convert-python (>=1.7.0)",
2625
"pandera[pandas] (>=0.24.0)",
27-
"papermill (>=2.6.0,<3.0.0)",
28-
"ipywidgets (>=8.1.7,<9.0.0)",
29-
"itables (>=2.4.4,<3.0.0)",
30-
"ipykernel (>=6.30.0,<7.0.0)",
31-
"nbconvert (>=7.16.6,<8.0.0)",
32-
"jupyter (>=1.1.1,<2.0.0)",
33-
"jupyterlab (>=4.4.5,<5.0.0)",
34-
"rich (>=14.1.0,<15.0.0)",
35-
"pydantic (>=2.11.7,<3.0.0)",
36-
"faker (>=37.8.0,<38.0.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)",
3736
]
3837

3938
[tool.poetry]

0 commit comments

Comments
 (0)