Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into openeye-decorators
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwthompson committed Nov 7, 2023
2 parents 1fe98ec + 6050dba commit a7b610b
Show file tree
Hide file tree
Showing 14 changed files with 1,139 additions and 580 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
- name: Conda Environment Information
shell: bash -l {0}
run: |
conda info
conda list
micromamba info
micromamba list
- name: Run Tests
shell: bash -l {0}
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repos:
- id: check-yaml
- id: debug-statements
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.9.1
hooks:
- id: black
files: ^openff
Expand All @@ -17,7 +17,7 @@ repos:
- id: isort
files: ^openff
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8
files: ^openff
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ git clone https://github.com/openforcefield/openff-bespokefit.git
cd openff-bespokefit
mamba env create --file devtools/conda-envs/test-env.yaml --name bespokefit-dev
mamba env update --file devtools/conda-envs/docs-env.yaml --name bespokefit-dev
conda activate bespokefit-dev
mamba activate bespokefit-dev
pip install -e .
```

Expand Down
2 changes: 1 addition & 1 deletion devtools/conda-envs/docs-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- openff-toolkit-base >=0.11.3
- openff-forcefields
- openff-interchange
- openff-qcsubmit ==0.5.0
- openff-qcsubmit <0.50
- openmm >=7.6.0

# Optional
Expand Down
7 changes: 7 additions & 0 deletions devtools/conda-envs/no_openeye.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,15 @@ dependencies:
- rdkit >=22
- ambertools >=22
- openff-utilities
<<<<<<< HEAD
- openff-toolkit-base
- openff-qcsubmit ==0.5.0
=======
- openff-toolkit-base >=0.11
- openff-forcefields
- openff-interchange
- openff-qcsubmit <0.50
>>>>>>> upstream/main
- openmm >=7.6.0

# Optional
Expand Down
8 changes: 5 additions & 3 deletions devtools/conda-envs/test-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ dependencies:
- click-option-group
- rdkit
- openff-utilities
- openff-toolkit-base
- openff-interchange-base
- openff-qcsubmit ==0.5.0
- openff-toolkit-base >=0.11
- openff-forcefields
- openff-interchange
- openff-units
- openff-qcsubmit <0.50
- openmm >=7.6.0

# Optional
Expand Down
3 changes: 1 addition & 2 deletions docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ mamba install -c psi4 -c conda-forge -c defaults psi4
[Psi4]: https://psicode.org/

:::{warning}
There is an incompatibility between the AmberTools and Psi4 conda packages on Mac, and it is not possible to
create a working conda environment containing both.
There are some incompatibilities between the AmberTools and Psi4 conda packages on macOS, and it may not be possible to create a working conda environment containing both.
:::

:::{note}
Expand Down
6 changes: 3 additions & 3 deletions docs/getting-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ field parameters trained to accurately capture the important features and phenom
It produces bespoke torsion parameters that have been trained to capture as closely as possible the torsion profiles of
the rotatable bonds in the target molecule, which collectively have a large impact on conformational preferences.

The recommended way to install `openff-bespokefit` is via the `conda` package manager. There are several optional
The recommended way to install `openff-bespokefit` is via the `mamba` package manager. There are several optional
dependencies, and a good starting environment is:

```shell
conda create -n bespokefit -y -c conda-forge mamba python=3.9
conda activate bespokefit
mamba create -n bespokefit -y -c conda-forge mamba python=3.9
mamba activate bespokefit
mamba install -y -c conda-forge openff-bespokefit xtb-python ambertools
```

Expand Down
Loading

0 comments on commit a7b610b

Please sign in to comment.