From ffda86202583ca437957d24cb4d1e70d92523c68 Mon Sep 17 00:00:00 2001 From: oesteban Date: Wed, 6 Nov 2019 11:39:00 -0800 Subject: [PATCH] maint: remove unnecessary files [skip ci] --- Makefile | 39 --------------------------------------- appveyor.yml | 31 ------------------------------- 2 files changed, 70 deletions(-) delete mode 100644 Makefile delete mode 100644 appveyor.yml diff --git a/Makefile b/Makefile deleted file mode 100644 index be8468a1845..00000000000 --- a/Makefile +++ /dev/null @@ -1,39 +0,0 @@ - -VERSION := $(shell python -c "import niworkflows; print niworkflows.info.__version__") - -.PHONY: clean-pyc -clean-pyc: - find . -name '__pycache__' -type d -exec rm -r {} + - find . -name '*.pyc' -exec rm --force {} + - find . -name '*.pyo' -exec rm --force {} + - find . -name '*~' -exec rm --force {} + - -.PHONY: clean-build -clean-build: - rm --force --recursive build/ - rm --force --recursive dist/ - rm --force --recursive *.egg-info - rm --force --recursive src/ - -.PHONY: tag -tag: - git tag -a $(VERSION) -m "Version ${VERSION}" - git push origin $(VERSION) - -.PHONY: test -test: clean-pyc - py.test --ignore=src/ --verbose $(TEST_PATH) - -dist: clean-build clean-pyc - python setup.py sdist - -.PHONY: tag-release -release: clean-build - python setup.py sdist - twine upload dist/* - -.PHONY: tag-release -tag-release: clean-build tag - python setup.py sdist - twine upload dist/* - diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 8cafc738b34..00000000000 --- a/appveyor.yml +++ /dev/null @@ -1,31 +0,0 @@ -build: false - -environment: - matrix: - - PYTHON: "C:\\Python27" - PYTHON_VERSION: "2.7.8" - PYTHON_ARCH: "32" - MINICONDA: C:\Miniconda - - - PYTHON: "C:\\Python35" - PYTHON_VERSION: "3.5.1" - PYTHON_ARCH: "32" - MINICONDA: C:\Miniconda35 - -init: - - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%" - -install: - - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%" - - conda config --set always_yes yes --set changeps1 no - - conda update -q conda - - conda info -a - - "conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy matplotlib pytest pytest-cov pandas" - - activate test-environment - - pip install coverage - - python setup.py install - -test_script: - - mkdir for_test - - cd for_test - - py.test --pyargs niworkflows --cov-report term-missing --cov=shablona