Skip to content

Commit 2c03558

Browse files
authored
Merge pull request #38 from ghisvail/mnt/flint-scm
MNT: Port project to flint-scm
2 parents 6957eb6 + e89fb3b commit 2c03558

File tree

8 files changed

+76
-2479
lines changed

8 files changed

+76
-2479
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ jobs:
9292
with:
9393
python-version: ${{ matrix.python-version }}
9494
- name: Install build tools
95-
run: python -m pip install --upgrade pip setuptools wheel twine
95+
run: python -m pip install --upgrade pip build twine
9696
- name: Build source and wheel distributions
97-
run: python setup.py sdist bdist_wheel
97+
run: python -m build
9898
- name: Check distributions
9999
run: twine check dist/*
100100
- uses: actions/upload-artifact@v2

MANIFEST.in

Lines changed: 0 additions & 2 deletions
This file was deleted.

pydra/tasks/fsl/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
"""
88

9-
from ._version import get_versions
10-
11-
__version__ = get_versions()['version']
12-
del get_versions
9+
try:
10+
from ._version import __version__
11+
except ImportError:
12+
pass

0 commit comments

Comments
 (0)