Skip to content

Commit 540f38e

Browse files
committed
Update pydantic to v2.7.3 in base check
1 parent f84cb70 commit 540f38e

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

agent_requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ psutil==5.9.0
6161
psycopg2-binary==2.9.9; python_version > '3.0'
6262
pyasn1==0.4.6
6363
pycryptodomex==3.20.0
64-
pydantic==2.0.2; python_version > '3.0'
64+
pydantic==2.4.0; python_version > '3.0'
6565
pyjwt==1.7.1; python_version < '3.0'
6666
pyjwt==2.8.0; python_version > '3.0'
6767
pymongo[srv]==4.7.1; python_version >= '3.9'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update pydantic to v2.7.3 in base check

datadog_checks_base/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ deps = [
5555
"prometheus-client==0.20.0; python_version > '3.0'",
5656
"protobuf==3.17.3; python_version < '3.0'",
5757
"protobuf==5.26.1; python_version > '3.0'",
58-
"pydantic==2.0.2; python_version > '3.0'",
58+
"pydantic==2.4.0; python_version > '3.0'",
5959
"python-dateutil==2.9.0.post0",
6060
"pywin32==228; sys_platform == 'win32' and python_version < '3.0'",
6161
"pywin32==306; sys_platform == 'win32' and python_version > '3.0'",

datadog_checks_dev/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ cli = [
7979
"pip-tools",
8080
"pathspec>=0.10.0",
8181
"platformdirs>=2.0.0a3",
82-
"pydantic>=2.0.2, <2.4.0",
82+
"pydantic>=2.0.2",
8383
"pysmi>=0.3.4",
8484
"securesystemslib[crypto]==0.28.0",
8585
"semver>=2.13.0",

ddev/src/ddev/plugin/external/hatch/environment_collector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def get_initial_config(self):
147147
'black==24.2.0',
148148
'ruff==0.3.3',
149149
# Keep in sync with: /datadog_checks_base/pyproject.toml
150-
'pydantic==2.0.2',
150+
'pydantic==2.4.0',
151151
],
152152
}
153153
config = {'lint': lint_env}

docs/developer/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $ ddev test postgres -l
1717
┃ Name ┃ Type ┃ Features ┃ Dependencies ┃ Environment variables ┃ Scripts ┃
1818
┡━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
1919
│ lint │ virtual │ │ black==22.12.0 │ │ all │
20-
│ │ │ │ pydantic==2.0.2 │ │ fmt │
20+
│ │ │ │ pydantic==2.4.0 │ │ fmt │
2121
│ │ │ │ ruff==0.0.257 │ │ style │
2222
├────────┼─────────┼──────────┼─────────────────┼─────────────────────────┼───────────┤
2323
│ latest │ virtual │ deps │ │ POSTGRES_VERSION=latest │ benchmark │

0 commit comments

Comments
 (0)