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 .binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:
- setuptools
- numpy =2.3.5
- black =25.1.0
- h5py =3.15.0
- h5py =3.16.0
- ase =3.27.0
Comment on lines 8 to 10

Copilot AI Mar 27, 2026

Copy link

Choose a reason for hiding this comment

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

This environment file still pins h5py to 3.15.0, which is now inconsistent with the h5py==3.16.0 pin in pyproject.toml (and CI env). Update this pin as well so Binder uses the same h5py version as the rest of the project.

Copilot uses AI. Check for mistakes.
- sphinxdft-data =0.0.1
- semantikon =0.0.27
Expand Down
2 changes: 1 addition & 1 deletion .ci_support/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:
- setuptools
- numpy =2.3.5
- black =25.1.0
- h5py =3.15.0
- h5py =3.16.0
- ase =3.27.0
- sphinxdft-data =0.0.1
- semantikon =0.0.27
Expand Down
2 changes: 1 addition & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
- setuptools
- numpy =2.3.5
- black =25.1.0
- h5py =3.15.0
- h5py =3.16.0
- ase =3.27.0
Comment on lines 13 to 16

Copilot AI Mar 27, 2026

Copy link

Choose a reason for hiding this comment

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

This docs environment file still pins h5py to 3.15.0, which is inconsistent with the updated h5py==3.16.0 dependency pin in pyproject.toml. Please bump it here too so the documentation build environment matches the package/CI dependencies.

Copilot uses AI. Check for mistakes.
- sphinxdft-data =0.0.1
- semantikon =0.0.27
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
dependencies = [
"numpy==2.3.5",
"ase==3.27.0",
"h5py==3.15.0",
"h5py==3.16.0",
"semantikon==0.0.27",
"pint==0.25.2",
"pyyaml==6.0.3",
Expand Down
Loading