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
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ Replace the below example with any added or modified files, and briefly describe

<!--Fill out at least the versions listed below and those of any packages that may be related.-->
Python version: 3.x
WOMBAT version (`wombat.__version__`): 0.x
dwind version (`dwind.__version__`): 0.x

<!--Add any other context about the problem here.-->
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.4.1 - 28 April 2026

- Fixes a typo in the new GitHub repository's name.

## v0.4 - 28 April 2026

- Code updated to be compatible with PySAM 7.1+ releases.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[![isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

Please note that at this time the model can only be run on NatlLabRockies's Kestrel HPC system.
Please note that at this time the model can only be run on NatLabRockies's Kestrel HPC system.
Though a savvy user could recreate our data in their own computing environment and update the
internal pointers in the example configuration at `examples/larimer_county_btm_baseline_2025.toml`
and `examples/model_config.toml`.
Expand All @@ -19,7 +19,7 @@ and `examples/model_config.toml`.
2. Clone the repository

```bash
git clone https://github.com/NatlLabRockies/dwind.git
git clone https://github.com/NatLabRockies/dwind.git
```

3. Navigate to the dwind repository.
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ bibliography:
- references.bib

repository:
url: https://github.com/NatlLabRockies/dwind
url: https://github.com/NatLabRockies/dwind
path_to_book: docs
branch: main

Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If you want to develop new models or contribute to dwind, you can install it fro
1. Using Git, navigate to a local target directory and clone repository:

```bash
git clone https://github.com/NatlLabRockies/dwind.git
git clone https://github.com/NatLabRockies/dwind.git
```

2. Navigate to `dwind`
Expand Down Expand Up @@ -50,7 +50,7 @@ pip install -e ".[dev]"
1. Using Git, navigate to a local target directory and clone repository:

```bash
git clone https://github.com/NatlLabRockies/dwind.git
git clone https://github.com/NatLabRockies/dwind.git
```

2. Navigate to `dwind`
Expand Down
2 changes: 1 addition & 1 deletion dwind/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .config import Configuration

__version__ = "0.4"
__version__ = "0.4.1"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ classifiers = [
dwind = "dwind.main:app"

[project.urls]
source = "https://github.com/NatlLabRockies/dwind"
issues = "https://github.com/NatlLabRockies/dwind/issues"
source = "https://github.com/NatLabRockies/dwind"
issues = "https://github.com/NatLabRockies/dwind/issues"
documentation = "https://natlabrockies.github.io/dwind/"
changelog = "https://github.com/NatlLabRockies/dwind/blob/main/CHANGELOG.md"
changelog = "https://github.com/NatLabRockies/dwind/blob/main/CHANGELOG.md"

# TODO
[project.optional-dependencies]
Expand Down
Loading