Skip to content

Commit

Permalink
Merge pull request #201 from jaketanderson/maintenance_testing
Browse files Browse the repository at this point in the history
Fixing versioneer issue. Thanks to all for helping!
  • Loading branch information
jaketanderson authored Sep 7, 2024
2 parents 17ae4e3 + affc777 commit 688cc2c
Show file tree
Hide file tree
Showing 6 changed files with 1,123 additions and 565 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
pytest $PYTEST_ARGS $PACKAGE
- name: Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
fail_ci_if_error: true
fail_ci_if_error: false
3 changes: 2 additions & 1 deletion devtools/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies:
- isort
- black >=22.1.0
- flake8

# Documentation
- numpydoc
- pandoc
Expand All @@ -39,3 +39,4 @@ dependencies:
# Pip-only installs
- pip:
- codecov

5 changes: 5 additions & 0 deletions paprika/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
pAPRika
Advanced toolkit for binding free energy calculations
"""

# Make Python 2 and 3 imports work the same
# Safe to remove with Python 3-only code
from __future__ import absolute_import
Expand Down Expand Up @@ -38,3 +39,7 @@
__all__ = ["setup", "analyze"]
else:
__all__ = ["analyze"]

from . import _version

__version__ = _version.get_versions()["version"]
Loading

0 comments on commit 688cc2c

Please sign in to comment.