Skip to content

Commit 0434d13

Browse files
authored
Merge pull request #19 from RolnickLab/add-nimrod-support
Add nimrod support + update dependencies
2 parents 15be4ed + eed5963 commit 0434d13

File tree

43 files changed

+3395
-3200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+3395
-3200
lines changed

.markdown-link-check.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"ignorePatterns": [
3+
{
4+
"pattern": "http://localhost"
5+
},
6+
{
7+
"pattern": "tps://github.com/RolnickLab/best-practices-documentation/tree"
8+
},
9+
{
10+
"pattern": "tps://github.com/RolnickLab/best-practices-documentation/issues"
11+
},
12+
{
13+
"pattern": "tps://github.com/RolnickLab/best-practices-documentation/pulls"
14+
},
15+
{
16+
"pattern": "https://github.com/RolnickLab/best-practices-documentation/wiki"
17+
},
18+
{
19+
"pattern": "https://github.com/RolnickLab/best-practices-documentation/wiki/DRAC-%E2%80%90-Compute-Canada"
20+
},
21+
{
22+
"pattern": "https://github.com/RolnickLab/lab-advanced-template"
23+
},
24+
{
25+
"pattern": "https://github.com/RolnickLab/lab-uv-template"
26+
},
27+
{
28+
"pattern": "https://github.com/RolnickLab/lab-poetry-template"
29+
},
30+
{
31+
"pattern": "https://github.com/RolnickLab/lab-template-documentation"
32+
}
33+
]
34+
}

.mdformat.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
number = true
2-
extensions = ["gfm", "gfm_alerts"]
2+
extensions = ["gfm", "gfm_alerts", "mkdocs"]

.pre-commit-config.yaml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
exclude: "^docs/|/migrations/|Makefile*"
1+
exclude: "/migrations/|Makefile*"
22
default_stages: [ commit ]
33

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.6.0
6+
rev: v6.0.0
77
hooks:
88
- id: check-json
99
- id: check-toml
@@ -28,46 +28,47 @@ repos:
2828
- id: autopep8
2929

3030
- repo: https://github.com/psf/black
31-
rev: 24.8.0
31+
rev: 25.12.0
3232
hooks:
3333
- id: black
3434

3535
- repo: https://github.com/PyCQA/isort
36-
rev: 5.13.2
36+
rev: 7.0.0
3737
hooks:
3838
- id: isort
3939

4040
- repo: https://github.com/PyCQA/docformatter
41-
rev: v1.7.5
41+
rev: v1.7.7
4242
hooks:
4343
- id: docformatter
4444
args: [ --in-place ]
4545
additional_dependencies: [tomli]
4646

4747
- repo: https://github.com/PyCQA/flake8
48-
rev: 7.0.0
48+
rev: 7.3.0
4949
hooks:
5050
- id: flake8
5151
additional_dependencies: [flake8-pyproject]
5252

5353
- repo: https://github.com/ikamensh/flynt
54-
rev: 1.0.1
54+
rev: 1.0.6
5555
hooks:
5656
- id: flynt
5757

5858
- repo: https://github.com/tcort/markdown-link-check
59-
rev: v3.13.7
59+
rev: v3.14.2
6060
hooks:
6161
- id: markdown-link-check
62-
args: [ -q ]
62+
args: ["-q", "--config", ".markdown-link-check.json"]
6363

6464
- repo: https://github.com/hukkin/mdformat
65-
rev: 0.7.22
65+
rev: 1.0.0
6666
hooks:
6767
- id: mdformat
6868
additional_dependencies:
6969
- mdformat-gfm
7070
- mdformat-gfm-alerts
71+
- mdformat-mkdocs
7172

7273

7374
# sets up .pre-commit-ci.yaml to ensure pre-commit dependencies stay up to date

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ ______________________________________________________________________
4949
- Implement vector functions for spatial selection and spatial joins
5050
- Implement functions to help manage and automate `pystac` API and client
5151
- Implement functions and scripts to search for and process Sentinel 2 products from
52-
Microsoft's Planetary Computer
52+
Microsoft's Planetary Computer
5353
- Add examples of the above in Jupyter notebook formats
5454
- Add tests and notebook tests

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ Changes to this repository should be tracked in the [CHANGES.md](CHANGES.md) fil
6868

6969
Actual version handling should be done using the following targets:
7070

71-
![](img/versionning_targets.png)
71+
![](.make/img/versionning_targets.png)

Makefile.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ deploy-docs: ## Publish and deploy the documentation to the live Github page
3535
echo "Skipping publication to Github Pages."; \
3636
echo " "; \
3737
;; \
38-
esac; \
38+
esac; \

0 commit comments

Comments
 (0)