-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cdd5c8
commit c5b057e
Showing
12 changed files
with
36 additions
and
759 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
absolv/_version.py export-subst | ||
.git_archival.txt export-subst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,6 @@ jobs: | |
fi | ||
- name: Build and Deploy Documentation | ||
env: | ||
INSIDER_DOCS_TOKEN: ${{ secrets.INSIDER_DOCS_TOKEN }} | ||
run: | | ||
git config --global user.name 'GitHub Actions' | ||
git config --global user.email '[email protected]' | ||
|
@@ -46,8 +44,4 @@ jobs: | |
git fetch --all --prune | ||
make env | ||
sed -i 's/# extensions/extensions/' mkdocs.yml | ||
make docs-insiders INSIDER_DOCS_TOKEN="${INSIDER_DOCS_TOKEN}" | ||
make docs-deploy VERSION="$VERSION" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
"""Absolute solvation free energy calculations using OpenMM""" | ||
|
||
from . import _version | ||
import importlib.metadata | ||
|
||
try: | ||
__version__ = importlib.metadata.version("absolv") | ||
except importlib.metadata.PackageNotFoundError: | ||
__version__ = "0+unknown" | ||
|
||
__version__ = _version.get_versions()["version"] | ||
__all__ = ["__version__"] |
Oops, something went wrong.