-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changed n_features_ for n_features_in_ * Added dependencies * Add name and description to project toml * Added versioneer to project toml * Wrote full project toml * Revert "Wrote full project toml" This reverts commit b7a7ae0. * Revert "Added versioneer to project toml" This reverts commit efc47b8. * Revert "Add name and description to project toml" This reverts commit a769556. * Revert "Added dependencies" This reverts commit 70aca9b. * Found where we had the versions outside of the project toml. Leaving the project.toml editing for another PR * Fixed package publishing action * Trigger tests * Ran pre-commit * Update max-line-length to make black happy * Fixed the style errors It looks like running `black .` didn't pick up the errors but `flake8 --select BLK` did. Using `python -m black .` fixed the style errors.
- Loading branch information
Showing
5 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
""" | ||
Integration test for mapca. | ||
""" | ||
|
||
import shutil | ||
from os.path import split | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Unit tests for utils.""" | ||
|
||
import numpy as np | ||
from pytest import raises | ||
from scipy.signal import detrend | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
""" | ||
PCA based on Moving Average (stationary Gaussian) process | ||
""" | ||
|
||
import logging | ||
|
||
import numpy as np | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,4 +138,4 @@ exclude_lines = [ | |
] | ||
|
||
[tool.pytest] | ||
log_cli = true | ||
log_cli = true |