-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating devtools, removing dashboard (#192)
* Move tool configurations together * Removed unused imports, pass ruff linter * Remove the GAMA Dashboard * Bump black * Bump mypy * Replace flake8 with ruff * Move mypy configuration to pyproject.toml * Remove optional requirements for Dashboard * Bump pre-commit * Fix an issue introduced by the new eps penalty in sklearn 1.2 The default value changed from 1e-15 to "auto" that is equivalent to np.finfo(y_pred.dtype).eps. * Explicitly add datetime format for parsing from log * Load data as pandas dataframe Because some pixels were inferred as categorical. See also #193
- Loading branch information
Showing
51 changed files
with
84 additions
and
1,877 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
ignore_errors = True | ||
omit = | ||
tests/* | ||
gama/dashboard/* | ||
exclude_lines = | ||
pragma: no cover | ||
def __repr__ | ||
|
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,16 +1,16 @@ | ||
repos: | ||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
rev: v0.0.261 | ||
hooks: | ||
- id: ruff | ||
args: [--fix, --exit-non-zero-on-fix] | ||
- repo: https://github.com/psf/black | ||
rev: 22.6.0 | ||
rev: 23.3.0 | ||
hooks: | ||
- id: black | ||
language_version: python3.10 | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v0.971 | ||
rev: v1.2.0 | ||
hooks: | ||
- id: mypy | ||
files: gama/.* | ||
- repo: https://github.com/pycqa/flake8 | ||
rev: 5.0.3 | ||
hooks: | ||
- id: flake8 | ||
files: gama/.* |
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 |
---|---|---|
|
@@ -4,4 +4,3 @@ codecov: | |
|
||
ignore: | ||
- "gama/utilities/cli.py" | ||
- "gama/dashboard/**/*" |
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
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
Empty file.
Oops, something went wrong.