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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Validate
name: build

on:
push:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
[![flake8](https://github.com/swat-model/pySWATPlus/actions/workflows/linting.yml/badge.svg)](https://github.com/swat-model/pySWATPlus/actions/workflows/linting.yml)
[![mypy](https://github.com/swat-model/pySWATPlus/actions/workflows/typing.yml/badge.svg)](https://github.com/swat-model/pySWATPlus/actions/workflows/typing.yml)
[![pytest](https://github.com/swat-model/pySWATPlus/actions/workflows/testing.yml/badge.svg)](https://github.com/swat-model/pySWATPlus/actions/workflows/testing.yml)
[![pytest](https://github.com/swat-model/pySWATPlus/actions/workflows/building.yml/badge.svg)](https://github.com/swat-model/pySWATPlus/actions/workflows/building.yml)
![Codecov](https://img.shields.io/codecov/c/github/debpal/pySWATPlus)

![GitHub Repo stars](https://img.shields.io/github/stars/swat-model/pySWATPlus)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/api/txtinoutreader.md → docs/api/txtinout_reader.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
::: pySWATPlus.TxtinoutReader
::: pySWATPlus.TxtinoutReader
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ nav:
- Read Output: userguide/read_output.md

- API Reference:
- TxtinoutReader: api/txtinoutreader.md
- TxtinoutReader: api/txtinout_reader.md
- FileReader: api/filereader.md
- SensitivityAnalyzer: api/sensitivityanalyzer.md
- SensitivityAnalyzer: api/sensitivity_analyzer.md
- PerformanceMetrics: api/performance_metrics.md
- pySWATPlus.types: api/types.md

Expand Down
4 changes: 2 additions & 2 deletions pySWATPlus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .txtinoutreader import TxtinoutReader
from .txtinout_reader import TxtinoutReader
from .filereader import FileReader
from .calsensitivityanalyzer import SensitivityAnalyzer
from .cal_sensitivity_analyzer import SensitivityAnalyzer
from .performance_metrics import PerformanceMetrics
from importlib.metadata import version, PackageNotFoundError

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import pathlib
from . import utils
from . import validators
from .txtinoutreader import TxtinoutReader
from .txtinout_reader import TxtinoutReader


class SensitivityAnalyzer(BaseSensitivityAnalyzer):
Expand Down
Loading
Loading