Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit bf892a7

Browse files
Merge pull request #195 from AurelienJaquier/pyproject
start using pyproject.toml
2 parents 88f089a + d69a91d commit bf892a7

File tree

7 files changed

+50
-3045
lines changed

7 files changed

+50
-3045
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535

3636
- name: Build a source tarball and wheel
3737
run: |
38-
pip install wheel
39-
python setup.py sdist bdist_wheel
38+
pip install build
39+
python -m build
4040
4141
- name: Get and store tag from 'Bump version and push tag' step
4242
if: ${{ !startsWith(github.ref, 'refs/tags/') }}

bluepyefe/__init__.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,3 @@
1818
along with this library; if not, write to the Free Software Foundation, Inc.,
1919
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2020
"""
21-
22-
from ._version import get_versions
23-
24-
__version__ = get_versions()["version"]
25-
del get_versions
26-
27-
from . import _version
28-
__version__ = _version.get_versions()['version']

0 commit comments

Comments
 (0)