Skip to content

Commit a27a8cb

Browse files
authored
Merge pull request #25 from brews/move_orgs
Update branding, hyperlinks for transfer to CIL
2 parents 4e557b9 + 5393485 commit a27a8cb

6 files changed

Lines changed: 22 additions & 21 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
- Documentation in docs/ hosted at brews.github.io/isku.
12+
- Documentation in docs/ hosted at https://climateimpactlab.github.io/isku.
1313
- Test and test-coverage badges to README.
1414
- Add pre-commit hooks (via prek) to help developers with format.
1515

1616
### Changed
1717

18+
- Move project repository to https://github.com/climateimpactlab/isku. They own this now.
1819
- BREAKING: `isku.ExtractionWorkflow` is now `isku.ExtractionTemplate`.
1920
- BREAKING: `isku.ProjectionWorkflow` is now `isku.ProjectionTemplate`.
2021
- BREAKING: `isku.build_extraction_workflow` is now `isku.build_extraction_template`.
@@ -29,5 +30,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2930

3031
- Initial release.
3132

32-
[Unreleased]: https://github.com/brews/isku/compare/v0.1.0...HEAD
33-
[0.1.0]: https://github.com/brews/isku/releases/tag/v0.1.0
33+
[Unreleased]: https://github.com/climateimpactlab/isku/compare/v0.1.0...HEAD
34+
[0.1.0]: https://github.com/climateimpactlab/isku/releases/tag/v0.1.0

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ You can contribute in many ways:
99

1010
### Report Bugs
1111

12-
Report bugs at https://github.com/brews/isku/issues
12+
Report bugs at https://github.com/climateimpactlab/isku/issues
1313

1414
If you are reporting a bug, please include:
1515

@@ -35,7 +35,7 @@ PRs with small corrections to spelling, format or clarity are welcome. The proje
3535

3636
### Submit Feedback
3737

38-
The best way to send feedback is to file an issue at https://github.com/brews/isku/issues.
38+
The best way to send feedback is to file an issue at https://github.com/climateimpactlab/isku/issues.
3939

4040
If you are proposing a new feature:
4141

@@ -110,7 +110,7 @@ git push origin name-of-your-bugfix-or-feature
110110

111111
## Documentation
112112

113-
Documentation is in the `docs/` directory with global configurations in the `.zensical` file. Documentation is rendered with [Zensical](https://zensical.org/) and hosted through GitHub Pages to https://brews.github.io/isku/.
113+
Documentation is in the `docs/` directory with global configurations in the `.zensical` file. Documentation is rendered with [Zensical](https://zensical.org/) and hosted through GitHub Pages to https://climateimpactlab.github.io/isku/.
114114

115115
You can build and check any changes or additions you've made to documentation locally on your machine after you've set up your development environment.
116116

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# isku
22

3-
[![python-test](https://github.com/brews/isku/actions/workflows/python-test.yaml/badge.svg)](https://github.com/brews/isku/actions/workflows/python-test.yaml)
4-
[![codecov](https://codecov.io/gh/brews/isku/graph/badge.svg?token=G53WDRL97C)](https://codecov.io/gh/brews/isku)
5-
[![Documentation](https://github.com/brews/isku/actions/workflows/docs.yml/badge.svg)](https://github.com/brews/isku/actions/workflows/docs.yml)
3+
[![python-test](https://github.com/climateimpactlab/isku/actions/workflows/python-test.yaml/badge.svg)](https://github.com/climateimpactlab/isku/actions/workflows/python-test.yaml)
4+
[![codecov](https://codecov.io/gh/climateimpactlab/isku/graph/badge.svg?token=G53WDRL97C)](https://codecov.io/gh/climateimpactlab/isku)
5+
[![Documentation](https://github.com/climateimpactlab/isku/actions/workflows/docs.yml/badge.svg)](https://github.com/climateimpactlab/isku/actions/workflows/docs.yml)
66

77
Minimalist Python + Xarray-based climate impact projection framework for researchers with little time.
88

@@ -162,13 +162,13 @@ uv add isku
162162
Install the unreleased and unstable bleeding-edge version of the package with:
163163

164164
```shell
165-
pip install git+https://github.com/brews/isku
165+
pip install git+https://github.com/climateimpactlab/isku
166166
```
167167

168168
using `pip` or with a project in `uv`, do
169169

170170
```shell
171-
uv add git+https://github.com/brews/isku
171+
uv add git+https://github.com/climateimpactlab/isku
172172
```
173173

174174
## Is this any good?

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ uv add isku
4343
Install the unreleased and unstable bleeding-edge version of the package with:
4444

4545
```shell
46-
pip install git+https://github.com/brews/isku
46+
pip install git+https://github.com/climateimpactlab/isku
4747
```
4848

4949
using `pip` or with a project in `uv`, do
5050

5151
```shell
52-
uv add git+https://github.com/brews/isku
52+
uv add git+https://github.com/climateimpactlab/isku
5353
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
authors = [{ name = "Brewster Malevich", email = "bmalevich@rhg.com" }]
77
requires-python = ">=3.14"
88
dependencies = ["xarray>=2026.4.0"]
9-
urls = { Repository = "https://github.com/brews/isku", Documentation = "https://brews.github.io/isku" }
9+
urls = { Repository = "https://github.com/climateimpactlab/isku", Documentation = "https://climateimpactlab.github.io/isku" }
1010

1111
[build-system]
1212
requires = ["uv_build>=0.11.12,<0.12.0"]

zensical.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ site_description = "Minimalist Python + xarray-based climate impact projection f
2222
# The site_author attribute. This is used in the HTML head element.
2323
#
2424
# Read more: https://zensical.org/docs/setup/basics/#site_author
25-
site_author = "@brews"
25+
site_author = "@climateimpactlab"
2626

2727
# The site_url is the canonical URL for your site. When building online
2828
# documentation you should set this.
2929
# Read more: https://zensical.org/docs/setup/basics/#site_url
30-
site_url = "https://brews.github.io/isku"
30+
site_url = "https://climateimpactlab.github.io/isku"
3131

3232
# The copyright notice appears in the page footer and can contain an HTML
3333
# fragment.
3434
#
3535
# Read more: https://zensical.org/docs/setup/basics/#copyright
36-
copyright = """
37-
Copyright &copy; 2026 Steven B. Malevich
38-
"""
36+
# copyright = """
37+
# Copyright &copy; 2026 Your Name Here
38+
# """
3939

4040
# Zensical supports both implicit navigation and explicitly defined navigation.
4141
# If you decide not to define a navigation here then Zensical will simply
@@ -71,8 +71,8 @@ extra_javascript = [
7171
"https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js"
7272
]
7373

74-
repo_name = "brews/isku"
75-
repo_url = "https://github.com/brews/isku"
74+
repo_name = "climateimpactlab/isku"
75+
repo_url = "https://github.com/climateimpactlab/isku"
7676
edit_uri = "edit/main/docs/"
7777

7878
[project.validation]

0 commit comments

Comments
 (0)