Skip to content

Commit

Permalink
Update versioneer to 0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
opoplawski authored and aragilar committed Jan 7, 2022
1 parent daa00f6 commit b4c6b6b
Show file tree
Hide file tree
Showing 5 changed files with 692 additions and 282 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pytest_mpi/_version.py export-subst
src/pytest_mpi/_version.py export-subst
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include versioneer.py pytest_mpi/_version.py
include versioneer.py src/pytest_mpi/_version.py
include README.md
include pypi-intro.rst
include LICENSE.txt CONTRIBUTING.md code_of_conduct.md
Expand Down
5 changes: 2 additions & 3 deletions src/pytest_mpi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
import py
import pytest

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from . import _version
__version__ = _version.get_versions()['version']


WITH_MPI_ARG = "--with-mpi"
Expand Down
Loading

0 comments on commit b4c6b6b

Please sign in to comment.