Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into better-zstandard-ba…
Browse files Browse the repository at this point in the history
…ndaid
  • Loading branch information
mattwthompson committed Oct 2, 2024
2 parents 8ba95f4 + 58b0688 commit 8d2d926
Show file tree
Hide file tree
Showing 10 changed files with 114 additions and 278 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,14 @@ jobs:
- name: Install environment with ${{ env.JOBNAME }}
uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.5.10-0'
environment-file: devtools/conda-envs/${{ env.ENVFILE }}.yaml
create-args: >-
python=${{ matrix.python-version }}
# default - will pull down 2.0 which we don't want!
# micromamba-version: latest
# pin to latest 1.x release
micromamba-version: "1.5.10-0"

- name: Make oe_license.txt file from GH org secret "OE_LICENSE"
env:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/beta_rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,23 @@ jobs:
- name: Install environment with ${{ env.JOBNAME }}
uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.5.10-0'
environment-file: devtools/conda-envs/test_env.yaml
condarc: |
channels:
- conda-forge/label/openmm_rc
- conda-forge/label/mdtraj_rc
- conda-forge/label/openff-toolkit_rc
- conda-forge/label/openff-interchange_rc
- openeye/label/rc
- openeye
- conda-forge
create-args: >-
python=${{ matrix.python-version }}
# default - will pull down 2.0 which we don't want!
# micromamba-version: latest
# pin to latest 1.x release
micromamba-version: "1.5.10-0"

- name: Make oe_license.txt file from GH org secret "OE_LICENSE"
env:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,22 @@ jobs:
uses: mamba-org/setup-micromamba@v1
if: ${{ matrix.openeye == 'false' }}
with:
micromamba-version: '1.5.10-0'
environment-file: devtools/conda-envs/conda.yaml
create-args: >-
python=${{ matrix.python-version }}
- name: Install from conda with OpenEye
uses: mamba-org/setup-micromamba@v1
if: ${{ matrix.openeye == 'true' }}
with:
micromamba-version: '1.5.10-0'
environment-file: devtools/conda-envs/conda_oe.yaml
create-args: >-
python=${{ matrix.python-version }}
# default - will pull down 2.0 which we don't want!
# micromamba-version: latest
# pin to latest 1.x release
micromamba-version: "1.5.10-0"

- name: Additional info about the build
run: |
Expand Down Expand Up @@ -126,4 +132,4 @@ jobs:
- name: Run example notebooks
run: |
python -m pytest -r fE -v -x --tb=short --nbval-lax --ignore=examples/deprecated examples
python -m pytest -r fE -v -x --tb=short --nbval-lax --ignore=examples/deprecated examples
5 changes: 5 additions & 0 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,14 @@ jobs:
- name: Install conda environment with ${{ env.ENVFILE }}
uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.5.10-0'
environment-file: devtools/conda-envs/${{env.ENVFILE}}-examples.yaml
create-args: >-
python=${{ matrix.python-version }}
# default - will pull down 2.0 which we don't want!
# micromamba-version: latest
# pin to latest 1.x release
micromamba-version: "1.5.10-0"

- name: Additional info about the build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- name: Install conda environment
uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.5.10-0'
environment-file: devtools/conda-envs/installer.yaml
create-args: >-
python=${{ matrix.python-version }}
Expand Down Expand Up @@ -108,4 +109,3 @@ jobs:
# This should work if run directly at release time, but a safer approach would be
# to `git checkout` the corresponding tag of the release, see PR #577
pytest $PYTEST_ARGS ../
187 changes: 1 addition & 186 deletions FAQ.md

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions docs/faq.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ maxdepth: 1
installation
examples
releasehistory
faq
Frequently Asked Questions (FAQ) <https://docs.openforcefield.org/faq>
:::

:::{toctree}
Expand Down
172 changes: 86 additions & 86 deletions docs/releasehistory.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/users/molecule_cookbook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@
"id": "821c4687",
"metadata": {},
"source": [
"We can downgrade this error to a warning with the `allow_undefined_stereo` argument. This will create a molecule with undefined stereochemistry, which might lead to incorrect parametrization or surprising conformer generation. See the [FAQ](../faq.md#im-getting-stereochemistry-errors-when-loading-a-molecule-from-a-smiles-string) for more details."
"We can downgrade this error to a warning with the `allow_undefined_stereo` argument. This will create a molecule with undefined stereochemistry, which might lead to incorrect parametrization or surprising conformer generation. See the [FAQ](inv:openff.docs#faq-stereochemistry-errors-from-smiles) for more details."
]
},
{
Expand Down

0 comments on commit 8d2d926

Please sign in to comment.