Skip to content

Commit 82912eb

Browse files
committed
Update dependencies to use pydantic 2
2 parents c0cba41 + 8306d5e commit 82912eb

9 files changed

+2108
-2028
lines changed

poetry.lock

+128-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pyyaml = "^6.0"
1919
graypy = "^2.0"
2020
marshmallow = "^3.19"
2121
requests = "^2.31"
22-
pydantic = "<2"
22+
pydantic = "^2"
2323
workflows = "^2.27"
2424

2525
[tool.poetry.group.dev.dependencies]

requirements_dev.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
annotated-types==0.7.0 ; python_version >= "3.8" and python_version < "4.0"
12
bidict==0.23.1 ; python_version >= "3.8" and python_version < "4.0"
23
certifi==2024.7.4 ; python_version >= "3.8" and python_version < "4.0"
34
charset-normalizer==3.3.2 ; python_version >= "3.8" and python_version < "4.0"
@@ -12,7 +13,8 @@ marshmallow==3.21.3 ; python_version >= "3.8" and python_version < "4.0"
1213
packaging==24.1 ; python_version >= "3.8" and python_version < "4.0"
1314
pika==1.3.2 ; python_version >= "3.8" and python_version < "4.0"
1415
pluggy==1.5.0 ; python_version >= "3.8" and python_version < "4.0"
15-
pydantic==1.10.17 ; python_version >= "3.8" and python_version < "4.0"
16+
pydantic-core==2.20.1 ; python_version >= "3.8" and python_version < "4.0"
17+
pydantic==2.8.2 ; python_version >= "3.8" and python_version < "4.0"
1618
pytest-cov==5.0.0 ; python_version >= "3.8" and python_version < "4.0"
1719
pytest-mock==3.14.0 ; python_version >= "3.8" and python_version < "4.0"
1820
pytest==8.2.2 ; python_version >= "3.8" and python_version < "4.0"

src/zocalo/cli/configure_rabbitmq.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def _(self, permissions: PermissionSpec):
7878
@functools.singledispatch
7979
def _info_to_spec(incoming, infos: list):
8080
cls = type(incoming)
81-
return [cls(**i.dict()) for i in infos]
81+
return [cls(**i.model_dump()) for i in infos]
8282

8383

8484
@functools.singledispatch

src/zocalo/util/rabbitmq.py

+17-19
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from typing import Any, Dict, List, Optional, Tuple, Union
1313

1414
import requests
15-
from pydantic import BaseModel, Field
15+
from pydantic import BaseModel, ConfigDict, Field
1616
from workflows.transport import pika_transport
1717

1818
import zocalo.configuration
@@ -404,9 +404,7 @@ class ExchangeSpec(BaseModel):
404404
vhost: str = Field(
405405
..., description="Virtual host name with non-ASCII characters escaped as in C."
406406
)
407-
408-
class Config:
409-
use_enum_values = True
407+
model_config = ConfigDict(use_enum_values=True)
410408

411409

412410
class ExchangeInfo(ExchangeSpec):
@@ -456,11 +454,9 @@ class PolicySpec(BaseModel):
456454
alias="apply-to",
457455
description="Which types of object this policy should apply to.",
458456
)
459-
460-
class Config:
461-
use_enum_values = True
462-
validate_all = True
463-
allow_population_by_field_name = True
457+
model_config = ConfigDict(
458+
use_enum_values=True, validate_default=True, populate_by_name=True
459+
)
464460

465461

466462
class QueueState(str, enum.Enum):
@@ -617,9 +613,7 @@ class UserSpec(BaseModel):
617613
password_hash: str = Field(..., description="Hash of the user password.")
618614
hashing_algorithm: HashingAlgorithm
619615
tags: List[str]
620-
621-
class Config:
622-
use_enum_values = True
616+
model_config = ConfigDict(use_enum_values=True)
623617

624618

625619
def http_api_request(
@@ -778,7 +772,7 @@ def binding_declare(self, binding: BindingSpec):
778772
endpoint = f"bindings/{binding.vhost}/e/{binding.source}/{binding.destination_type.value}/{binding.destination}"
779773
response = self.post(
780774
endpoint,
781-
json=binding.dict(
775+
json=binding.model_dump(
782776
exclude_defaults=True,
783777
exclude={"vhost", "source", "destination", "destination_type"},
784778
),
@@ -854,7 +848,7 @@ def exchange_declare(self, exchange: ExchangeSpec):
854848
endpoint = f"exchanges/{exchange.vhost}/{exchange.name}/"
855849
response = self.put(
856850
endpoint,
857-
json=exchange.dict(exclude_defaults=True, exclude={"name", "vhost"}),
851+
json=exchange.model_dump(exclude_defaults=True, exclude={"name", "vhost"}),
858852
)
859853
response.raise_for_status()
860854

@@ -879,7 +873,7 @@ def set_policy(self, policy: PolicySpec):
879873
endpoint = f"policies/{policy.vhost}/{policy.name}/"
880874
response = self.put(
881875
endpoint,
882-
json=policy.dict(
876+
json=policy.model_dump(
883877
exclude_defaults=True, exclude={"name", "vhost"}, by_alias=True
884878
),
885879
)
@@ -908,7 +902,8 @@ def queues(
908902
def queue_declare(self, queue: QueueSpec):
909903
endpoint = f"queues/{queue.vhost}/{queue.name}"
910904
response = self.put(
911-
endpoint, json=queue.dict(exclude_defaults=True, exclude={"name", "vhost"})
905+
endpoint,
906+
json=queue.model_dump(exclude_defaults=True, exclude={"name", "vhost"}),
912907
)
913908
response.raise_for_status()
914909

@@ -948,7 +943,9 @@ def permissions(
948943

949944
def set_permissions(self, permission: PermissionSpec):
950945
endpoint = f"permissions/{permission.vhost}/{permission.user}/"
951-
submission = permission.dict(exclude_defaults=True, exclude={"vhost", "user"})
946+
submission = permission.model_dump(
947+
exclude_defaults=True, exclude={"vhost", "user"}
948+
)
952949
response = self.put(endpoint, json=submission)
953950
response.raise_for_status()
954951

@@ -959,7 +956,7 @@ def clear_permissions(self, vhost: str, user: str):
959956

960957
def user_put(self, user: UserSpec):
961958
endpoint = f"users/{user.name}/"
962-
submission = user.dict(exclude_defaults=True, exclude={"name"})
959+
submission = user.model_dump(exclude_defaults=True, exclude={"name"})
963960
submission["tags"] = ",".join(submission["tags"])
964961
response = self.put(endpoint, json=submission)
965962
response.raise_for_status()
@@ -982,7 +979,8 @@ def vhost(self, name: str) -> VHostSpec:
982979
def add_vhost(self, vhost: VHostSpec):
983980
endpoint = f"vhosts/{vhost.name}/"
984981
response = self.put(
985-
endpoint, json=vhost.dict(exclude_defaults=True, exclude={"name", "vhost"})
982+
endpoint,
983+
json=vhost.model_dump(exclude_defaults=True, exclude={"name", "vhost"}),
986984
)
987985
response.raise_for_status()
988986

src/zocalo/util/slurm/__init__.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,14 @@ def get_job_info(self, job_id: int) -> models.JobInfo:
146146
endpoint = f"slurm/{self.version}/job/{job_id}"
147147
response = self.get(endpoint)
148148
job_info_resp = models.OpenapiJobInfoResp(**response.json())
149-
jobinfo = next(iter(dict(job_info_resp.jobs).get("__root__", [])))
149+
jobinfo = next(iter(dict(job_info_resp.jobs).get("root", [])))
150150
return jobinfo
151151

152152
def submit_job(
153153
self, job_submission: models.JobSubmitReq
154154
) -> models.JobSubmitResponseMsg:
155155
endpoint = f"slurm/{self.version}/job/submit"
156-
response = self.post(endpoint, json=job_submission.dict(exclude_defaults=True))
156+
response = self.post(
157+
endpoint, json=job_submission.model_dump(exclude_defaults=True)
158+
)
157159
return models.JobSubmitResponseMsg(**response.json())

0 commit comments

Comments
 (0)