Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into shift-annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwthompson committed Mar 8, 2024
2 parents 84ee68c + 118918c commit 1d7a875
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 18 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/beta_rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- ubuntu-latest
- macos-latest
python-version:
- 3.9
- 3.10

env:
OE_LICENSE: ${{ github.workspace }}/oe_license.txt
Expand All @@ -39,12 +39,6 @@ jobs:
create-args: >-
python=${{ matrix.python-version }}
- name: Additional info about the build
run: |
uname -a
df -h
ulimit -a
- name: Make oe_license.txt file from GH org secret "OE_LICENSE"
env:
OE_LICENSE_TEXT: ${{ secrets.OE_LICENSE }}
Expand All @@ -57,17 +51,13 @@ jobs:
python -m pip install .
- name: Install test plugins
run: |
python -m pip install utilities/test_plugins
run: python -m pip install utilities/test_plugins

- name: Environment Information
run: |
conda info
conda list
run: micromamba info && micromamba list

- name: Check links
run: |
pytest -r fE --tb=short openff/toolkit/_tests/test_links.py
run: pytest -r fE --tb=short openff/toolkit/_tests/test_links.py

- name: Run mypy
run: mypy -p "openff.toolkit"
Expand Down
3 changes: 2 additions & 1 deletion devtools/conda-envs/beta_rc_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ dependencies:
- openff-nagl-models ==0.1.0
# Toolkit-specific
- ambertools >=22
- rdkit
# https://github.com/rdkit/rdkit/issues/7221
- rdkit >=2023.09.6
- openeye-toolkits
# Test-only/optional/dev
- pytest
Expand Down
3 changes: 2 additions & 1 deletion devtools/conda-envs/rdkit-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ dependencies:
# AmberTools 23 brings in ParmEd 4, which doesn't yet work with examples
# https://github.com/openforcefield/openff-toolkit/issues/1532
- ambertools =22.4
- rdkit
# https://github.com/rdkit/rdkit/issues/7221
- rdkit <2023.09.6
# Test-only/optional/dev/typing/examples
- pytest
- pytest-xdist
Expand Down
3 changes: 2 additions & 1 deletion devtools/conda-envs/rdkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ dependencies:
- typing_extensions
# Toolkit-specific
- ambertools >=22
- rdkit
# https://github.com/rdkit/rdkit/issues/7221
- rdkit <2023.09.6
# Test-only/optional/dev/typing
- pytest
- pytest-cov
Expand Down
3 changes: 2 additions & 1 deletion devtools/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ dependencies:
- openff-nagl-models ==0.1.0
# Toolkit-specific
- ambertools >=22
- rdkit
# https://github.com/rdkit/rdkit/issues/7221
- rdkit <2023.09.6
- openeye-toolkits
# Test-only/optional/dev/typing
- pytest
Expand Down

0 comments on commit 1d7a875

Please sign in to comment.