Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT: Purge defunct nisext package #1290

Merged
merged 1 commit into from
Dec 26, 2023
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 .coveragerc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[run]
branch = True
source = nibabel, nisext
include = */nibabel/*, */nisext/*
source = nibabel
include = */nibabel/*
omit =
*/externals/*
*/benchmarks/*
Expand Down
21 changes: 1 addition & 20 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -233,25 +233,6 @@ bdist_rpm:
bdist_mpkg:
$(PYTHON) tools/mpkg_wrapper.py setup.py install

# Check for files not installed
check-files:
$(PYTHON) -c 'from nisext.testers import check_files; check_files("nibabel")'

# Print out info for possible install methods
check-version-info:
$(PYTHON) -c 'from nisext.testers import info_from_here; info_from_here("nibabel")'

# Run tests from installed code
installed-tests:
$(PYTHON) -c 'from nisext.testers import tests_installed; tests_installed("nibabel")'

# Run tests from packaged distributions
sdist-tests:
$(PYTHON) -c 'from nisext.testers import sdist_tests; sdist_tests("nibabel", doctests=False)'

bdist-egg-tests:
$(PYTHON) -c 'from nisext.testers import bdist_egg_tests; bdist_egg_tests("nibabel", doctests=False, label="not script_test")'

sdist-venv: clean
rm -rf dist venv
unset PYTHONPATH && $(PYTHON) setup.py sdist --formats=zip
Expand All @@ -260,7 +241,7 @@ sdist-venv: clean
mkdir venv/tmp
cd venv/tmp && unzip ../../dist/*.zip
. venv/bin/activate && cd venv/tmp/nibabel* && python setup.py install
unset PYTHONPATH && . venv/bin/activate && cd venv && nosetests --with-doctest nibabel nisext
unset PYTHONPATH && . venv/bin/activate && cd venv && pytest --doctest-modules --doctest-plus --pyargs nibabel

source-release: distclean
$(PYTHON) -m compileall .
Expand Down
13 changes: 0 additions & 13 deletions nisext/__init__.py

This file was deleted.

38 changes: 0 additions & 38 deletions nisext/py3builder.py

This file was deleted.

285 changes: 0 additions & 285 deletions nisext/sexts.py

This file was deleted.

Loading