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
8 changes: 4 additions & 4 deletions devtools/conda-envs/examples_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- pip
- python=3.10
- python=3.11
- jupyterlab>=4
- ipywidgets>=8
# Cookbook
Expand All @@ -23,8 +23,8 @@ dependencies:
- lammps
- rich
- jax
- parmed <4
- parmed
- nglview ~=3.0.6
- psi4
# New versions of torchdata require new versions of PyTorch which are not supported by DGL
- torchdata<=0.10.0
# torchdata.datapipes was removed in 0.10.0
- torchdata<=0.9.0
4 changes: 3 additions & 1 deletion source/_ext/cookbook/globals_.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@
"""

# ".*/experimental/.*",
OPTIONAL_NOTEBOOKS: list[str] = list()
OPTIONAL_NOTEBOOKS: list[str] = [
"openforcefield/openff-toolkit/external/swap_amber_parameters/swap_existing_ligand_parameters.ipynb",
]
"""
Notebooks whose execution failure will not cause notebook processing to fail.

Expand Down
2 changes: 1 addition & 1 deletion source/_ext/proc_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def create_colab_notebook(src: Path, cache_branch: str):
cell_type="code",
source=[
"# Execute this cell to make this notebook's dependencies available",
"!pip install -U https://github.com/conda-incubator/condacolab/archive/cuda-version-12.tar.gz",
"!pip install -q condacolab",
"import condacolab",
"condacolab.install()",
*wget_files,
Expand Down