Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:

- name: Build a source tarball and wheel
run: |
pip install wheel
python setup.py sdist bdist_wheel
pip install build
python -m build

- name: Get and store tag from 'Bump version and push tag' step
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
Expand Down
5 changes: 2 additions & 3 deletions bluepyopt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@
"""

# pylint: disable=W0611
from importlib.metadata import version

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

from . import tools # NOQA

Expand Down
Loading
Loading