Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "linting" action #37

Merged
merged 3 commits into from
Feb 21, 2024
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ source/_cookbook/
__pycache__/
.pytest_cache
.ipynb_checkpoints

# macOS
.DS_Store
3 changes: 2 additions & 1 deletion devtools/conda-envs/lint_env.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: openff-toolkit-docs
name: openff-docs-lint
channels:
- conda-forge
dependencies:
Expand All @@ -14,6 +14,7 @@ dependencies:
- nbconvert
- nbformat
# Code example deps
- openmm
- openff-toolkit-base
- openff-interchange-base
- ambertools
Expand Down
8 changes: 7 additions & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,13 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ["Thumbs.db", ".DS_Store", "_*"]
exclude_patterns = [
"Thumbs.db",
".DS_Store",
"_*",
# Don't render this, but keep the exclude path specific so that /workshops/2024/ is rendered
"workshops/2024/smirnoff/colab-smirnoff.ipynb",
]


# -- Options for HTML output -------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion source/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,4 +267,4 @@ $ conda config --system --set subdir osx-64
Note that this will affect how Conda behaves with other environments.

[Rosetta]: https://support.apple.com/en-au/HT211861
[use Rosetta]: https://conda-forge.org/docs/user/tipsandtricks.html#installing-apple-intel-packages-on-apple-silicon
[use Rosetta]: https://conda-forge.org/docs/user/tipsandtricks/#installing-apple-intel-packages-on-apple-silicon
Loading