Skip to content

Commit

Permalink
address @pmav99 reviews 2
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsail committed Nov 8, 2024
1 parent 9c7b6f5 commit ca831e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python: ["3.10", "3.11", "3.12"]
python: ["3.10", "3.11", "3.12", "3.13"]
include:
- os: "macos-latest"
python: "3.10"
Expand Down
5 changes: 2 additions & 3 deletions seastats/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import numpy as np
import pandas as pd

_ALL_METRICS = [
SUPPORTED_METRICS = [
"bias",
"rmse",
"rms",
Expand Down Expand Up @@ -244,8 +244,7 @@ def get_stats(
"""

if metrics == ["all"]:
metrics = _ALL_METRICS
print(metrics)
metrics = SUPPORTED_METRICS

version_stat = {}

Expand Down

0 comments on commit ca831e9

Please sign in to comment.