Skip to content

Commit d14fd16

Browse files
committed
fix: add missing packaging dependency
The replicate.lib._schema module imports the packaging library but it wasn't listed as a dependency in pyproject.toml, causing ModuleNotFoundError when the module is imported. Fixes import error: "ModuleNotFoundError: No module named 'packaging'"
1 parent dbb4bf4 commit d14fd16

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ dependencies = [
1414
"anyio>=3.5.0, <5",
1515
"distro>=1.7.0, <2",
1616
"sniffio",
17+
"packaging>=25.0",
1718
]
1819
requires-python = ">= 3.8"
1920
classifiers = [

0 commit comments

Comments
 (0)