Skip to content
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
1 change: 0 additions & 1 deletion .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ coverage:

ignore:
- "mapca/tests/"
- "mapca/due.py"
- "mapca/_version.py"
- "mapca/info.py"
1 change: 0 additions & 1 deletion mapca/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"""

from ._version import get_versions
from .due import Doi, due
from .mapca import MovingAveragePCA, ma_pca

__version__ = get_versions()["version"]
Expand Down
65 changes: 0 additions & 65 deletions mapca/due.py

This file was deleted.

5 changes: 2 additions & 3 deletions mapca/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"""
Base module variables
"""

import importlib.util
import json
import os.path as op

from pathlib import Path

# Get version
Expand Down Expand Up @@ -82,13 +82,12 @@
"sphinx-argparse",
],
"tests": TESTS_REQUIRES,
"duecredit": ["duecredit"],
}

ENTRY_POINTS = {}

# Enable a handle to install all extra dependencies at once
EXTRA_REQUIRES["all"] = list(set([v for deps in EXTRA_REQUIRES.values() for v in deps]))
EXTRA_REQUIRES["all"] = list({v for deps in EXTRA_REQUIRES.values() for v in deps})

# Supported Python versions using PEP 440 version specifiers
# Should match the same set of Python versions as classifiers
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ exclude = '''
| versioneer.py
| mapca/info.py
| mapca/_version.py
| mapca/due.py
)
'''