From bc5f225e9266fea1f9afd24648532e4c32c634f7 Mon Sep 17 00:00:00 2001 From: Gabriel Beckers Date: Wed, 4 Oct 2023 13:12:37 +0200 Subject: [PATCH] remove old config files --- .codacy.yml | 7 ------- .travis.yml | 24 ------------------------ LICENSE | 2 +- TODO | 10 ---------- tox.ini | 37 ------------------------------------- 5 files changed, 1 insertion(+), 79 deletions(-) delete mode 100644 .codacy.yml delete mode 100644 .travis.yml delete mode 100644 TODO delete mode 100644 tox.ini diff --git a/.codacy.yml b/.codacy.yml deleted file mode 100644 index 5c1e4529..00000000 --- a/.codacy.yml +++ /dev/null @@ -1,7 +0,0 @@ -# Config file for automatic testing at codacy.com ---- -exclude_paths: - - 'docs/**' - - 'setup.py' - - 'versioneer.py' - - 'darr/_version.py' diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b8b0e622..00000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -language: python - -branches: - only: - - master - -sudo: true - -dist: xenial - -matrix: - include: - - python: 3.6 - - python: 3.7 - - python: 3.8 - -install: - - pip install -U pip setuptools wheel tox-travis coveralls - -script: - - tox - -after_success: -- coveralls \ No newline at end of file diff --git a/LICENSE b/LICENSE index 8298d17e..d734ebf6 100644 --- a/LICENSE +++ b/LICENSE @@ -7,7 +7,7 @@ Darr is distributed under a 3-clause ("Simplified" or "New") BSD license. Darr license ============ -Copyright (c) 2018-2022, Gabriël J.L. Beckers +Copyright (c) 2018-2023, Gabriël J.L. Beckers All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/TODO b/TODO deleted file mode 100644 index 1832b7d5..00000000 --- a/TODO +++ /dev/null @@ -1,10 +0,0 @@ -- allow for additional files to be tracked -- conda -- lock when writing? -- add axis labels? -- look at concurrent write access -- support compiled languages? Fortran, C, etc. - - - - diff --git a/tox.ini b/tox.ini deleted file mode 100644 index e634022e..00000000 --- a/tox.ini +++ /dev/null @@ -1,37 +0,0 @@ -# Tox (http://tox.testrun.org/) is a tool for running tests -# in multiple virtualenvs. This configuration file will run the -# test suite on all supported python versions. To use it, "pip install tox" -# and then run "tox" from this directory. - -[tox] - -envlist = py36,py37-npy{114,115,116,117,118,latest},py38-npy{117,118,latest} - -[testenv] -install_command = pip install {opts} {packages} -setenv = - PYTHONHASHSEED = 42 - # hooks for coverage exclusions based on Python major version - py36,py37,py38: PY_MAJOR_VERSION = py3 -commands = - # main unit test runner - py36: pytest -v --cov=darr --cov-config=.coveragerc darr - py37-{npy114,npy115,npy116,npy117,npy118}: pytest -v darr - # don't collect coverage when running older numpy versions - py38-{npy117,npy118}: pytest -v darr - py37-npylatest: pytest -v --cov=darr --cov-config=.coveragerc darr - py38-npylatest: pytest -v --cov=darr --cov-config=.coveragerc darr - # generate a coverage report - py36,py37-npylatest,py38-npylatest: coverage report -m - -deps = - py37-npy114: numpy==1.14.5 - py37-npy115: numpy==1.15.4 - py37-npy116: numpy==1.16.5 - py37-npy117: numpy==1.17.5 - py37-npy118: numpy==1.18.4 - py38-npy117: numpy==1.17.5 - py38-npy118: numpy==1.18.4 - py36,py37-latest,py38-latest: numpy - -rrequirements_dev.txt -