Skip to content

Commit 2495e33

Browse files
author
Brett Chaldecott
committed
fix: add frozendict dependency for Python 3.13 compatibility
- Add frozendict ^2.4.0 to Poetry dependencies in pyproject.toml - Add frozendict to requirements.txt for pip installations - Resolves Python 3.13 compatibility issues with immutable dict types
1 parent 3af2cc4 commit 2495e33

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ urllib3 = ">= 2.1.0, < 3.0.0"
1616
python-dateutil = ">= 2.8.2"
1717
pydantic = ">= 2"
1818
typing-extensions = ">= 4.7.1"
19+
frozendict = "^2.4.0"
1920

2021
[tool.poetry.dev-dependencies]
2122
pytest = ">= 7.2.1"

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ urllib3 >= 2.1.0, < 3.0.0
22
python_dateutil >= 2.8.2
33
pydantic >= 2
44
typing-extensions >= 4.7.1
5+
frozendict

0 commit comments

Comments
 (0)