Skip to content
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 .ci_support/environment-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ dependencies:
- jupyter-book =1.0.0
- mpi4py =4.1.1
- python =3.12
- pydantic =2.13.0
- pydantic =2.13.1
- pyzmq =27.1.0
2 changes: 1 addition & 1 deletion .ci_support/environment-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
- ipython =9.9.0
- matplotlib =3.10.8
- networkx =3.6.1
- pydantic =2.13.0
- pydantic =2.13.1
- pygraphviz =1.14
- pysqa =0.4.0
- pyzmq =27.1.0
Expand Down
2 changes: 1 addition & 1 deletion .ci_support/environment-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- ipython =9.9.0
- mpi4py =4.1.1
- networkx =3.6.1
- pydantic =2.13.0
- pydantic =2.13.1
Copy link

Copilot AI Apr 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR updates Pydantic to 2.13.1 in several env files, but .ci_support/environment-openmpi.yml is still pinned to pydantic =2.13.0 (and that file is used by CI/release workflows). Please bump it too to keep the environments consistent and ensure CI actually tests the new version.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot apply changes based on this feedback

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Implemented in b6957c4: .ci_support/environment-openmpi.yml now pins pydantic =2.13.1 to match the other updated environments.

- pygraphviz =1.14
- pysqa =0.4.0
- pyzmq =27.1.0
2 changes: 1 addition & 1 deletion .ci_support/environment-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- ipython =9.9.0
- mpi4py =4.1.1
- networkx =3.6.1
- pydantic =2.13.0
- pydantic =2.13.1
- pygraphviz =1.14
- pysqa =0.4.0
- pyzmq =27.1.0
2 changes: 1 addition & 1 deletion .ci_support/environment-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ dependencies:
- ipython =9.9.0
- mpi4py =4.1.1
- networkx =3.6.1
- pydantic =2.13.0
- pydantic =2.13.1
- pygraphviz =1.14
- pyzmq =27.1.0
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ cluster = [
"h5py==3.16.0",
]
validation = [
"pydantic==2.13.0",
"pydantic==2.13.1",
]
all = [
"mpi4py==4.1.1",
"pysqa==0.4.0",
"h5py==3.16.0",
"pydantic==2.13.0",
"pydantic==2.13.1",
"pygraphviz==1.14",
"networkx==3.6.1",
"ipython==9.9.0",
Expand Down
Loading