Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Pydantic to >= 2.0.0 #607

Merged
merged 1 commit into from
Aug 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ install_requires =
tokenizers>=0.13.3
transformers==4.43.1 # if you change this, please also change version assert in petals/__init__.py
speedtest-cli==2.1.3
hivemind @ git+https://github.com/learning-at-home/hivemind.git@f98acba7aa3cf93717c40ca95d0b4e5b5742414c
hivemind @ git+https://github.com/learning-at-home/hivemind.git@213bff98a62accb91f254e2afdccbf1d69ebdea9
tensor_parallel==1.0.23
humanfriendly
async-timeout>=4.0.2
Expand Down
2 changes: 1 addition & 1 deletion src/petals/data_structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from enum import Enum
from typing import Any, Dict, Optional, Sequence, Tuple

import pydantic
import pydantic.v1 as pydantic
from hivemind import PeerID
from hivemind.moe.expert_uid import ExpertUID

Expand Down
Loading