Skip to content

Commit

Permalink
Merge pull request #47 from OpenFreeEnergy/move_things2utils
Browse files Browse the repository at this point in the history
Move things to utils, test interchange creation
  • Loading branch information
hannahbaumann authored Oct 7, 2024
2 parents c47b563 + 9ec736c commit a4496dd
Show file tree
Hide file tree
Showing 15 changed files with 570 additions and 320 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ci:
autoupdate_schedule: "quarterly"
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: check-yaml
- id: debug-statements
Expand All @@ -12,23 +12,23 @@ repos:
- id: check-executables-have-shebangs
- id: check-json
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 24.8.0
hooks:
- id: black
files: ^openfe_gromacs
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
files: ^openfe_gromacs
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 7.1.1
hooks:
- id: flake8
files: ^openfe_gromacs
additional_dependencies: [Flake8-pyproject]
- repo: https://github.com/asottile/pyupgrade
rev: 'v3.3.1'
rev: 'v3.17.0'
hooks:
- id: pyupgrade
args:
Expand Down
2 changes: 2 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ dependencies:
- pytest
- pytest-xdist
- pytest-cov
- pip:
- git+https://github.com/openforcefield/openff-interchange.git
4 changes: 4 additions & 0 deletions openfe_gromacs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from importlib.metadata import version

from gufe import (
AlchemicalNetwork,
ChemicalSystem,
Expand All @@ -19,3 +21,5 @@
ProtocolUnitResult,
execute_DAG,
)

__version__ = version("openfe_gromacs")
Loading

0 comments on commit a4496dd

Please sign in to comment.