Skip to content

Commit

Permalink
Merge pull request #11 from effigies/mnt/flit
Browse files Browse the repository at this point in the history
Looks very clean
  • Loading branch information
tclose authored Nov 19, 2022
2 parents 71421b5 + b0ec94c commit 0130a00
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 2,529 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
python-version: [3.7, 3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
pip install ".[test]"
- name: Test with pytest
run: |
pytest -sv --doctest-modules pydra/tasks/ants
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,5 @@ dmypy.json

# Pycharm
.idea

_version.py
2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

9 changes: 5 additions & 4 deletions pydra/tasks/ants/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""
>>> from pydra import ShellCommandTask
>>> import pydra.tasks.ants
"""
from ._version import get_versions

__version__ = get_versions()["version"]
del get_versions
try:
from ._version import __version__
except ImportError:
pass
Loading

0 comments on commit 0130a00

Please sign in to comment.