Skip to content

Commit

Permalink
Remove due (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
eurunuela authored Jan 5, 2023
1 parent 90ca567 commit 45837f9
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 71 deletions.
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
)
'''

0 comments on commit 45837f9

Please sign in to comment.