Skip to content

Commit

Permalink
Merge pull request #37 from openforcefield/fix-lint-action
Browse files Browse the repository at this point in the history
Fix "linting" action
  • Loading branch information
mattwthompson authored Feb 21, 2024
2 parents e755aaf + 1b9b5fe commit e3eda24
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
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

0 comments on commit e3eda24

Please sign in to comment.