Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve docs #708

Merged
merged 58 commits into from
Dec 12, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
d781ef3
intersphinx xclim
Dec 9, 2021
feb88e1
Update climpred/classes.py
aaronspring Dec 9, 2021
f38064d
Update climpred/classes.py
aaronspring Dec 9, 2021
445f439
smoothing almost done
Dec 9, 2021
70c8314
smoothing done
Dec 9, 2021
555ff85
classes.py
Dec 9, 2021
533a6cd
Merge branch 'docs' of https://github.com/aaronspring/climpred into docs
Dec 9, 2021
e2b86b8
stats checks reference
Dec 9, 2021
47aa5ea
fix comparison
Dec 9, 2021
a5ae204
fix tutorial
Dec 9, 2021
64182c0
add PredictionEnsemble to API
Dec 9, 2021
b68c639
fix test
Dec 9, 2021
2c42418
alignment.py
Dec 9, 2021
998230d
started with metrics.py
Dec 9, 2021
d45b84d
Update climpred/tutorial.py
aaronspring Dec 10, 2021
0aa78ee
Update climpred/tutorial.py
aaronspring Dec 10, 2021
845bdd8
Update docs/source/conf.py
aaronspring Dec 10, 2021
69c913e
fix \
Dec 10, 2021
7172ee4
Merge branch 'docs' of https://github.com/aaronspring/climpred into docs
Dec 10, 2021
240d452
link to docs more
Dec 10, 2021
c99a67f
fix doctests
Dec 10, 2021
04abd1f
comparisons.py
Dec 10, 2021
a626959
transpose_and_rechunk only ds
Dec 10, 2021
1e858a7
fix
Dec 10, 2021
801137b
fix
Dec 10, 2021
2a088c5
fix .pre-commit pydocstyles ignoring tests
Dec 10, 2021
83fc990
fix tests
Dec 11, 2021
dab8865
new doctests with crps
Dec 11, 2021
ffd8f16
contrib
Dec 11, 2021
af10284
contrib
Dec 11, 2021
59d5113
settingupdata
Dec 11, 2021
1c66821
init datasets
Dec 11, 2021
494d763
docs
Dec 11, 2021
36f8347
try fix
Dec 11, 2021
3bf5680
fix __repr__ doc8 error
Dec 11, 2021
0d1842e
small fix
Dec 11, 2021
8fa69e1
reference
Dec 11, 2021
c23b309
fix
Dec 11, 2021
160ecb3
fix
Dec 11, 2021
ca7b4cb
fix
Dec 11, 2021
79f723f
fix
Dec 11, 2021
0db7160
flake8 on docs
Dec 11, 2021
40ebd2e
fix
Dec 11, 2021
dc87401
refactor hind -> initialized
Dec 11, 2021
4c21f82
use resample_iterations from xskillscore
Dec 11, 2021
782c587
enable pydocstyle
Dec 11, 2021
291cf17
ignore doc8
Dec 12, 2021
ace4528
fix CL
Dec 12, 2021
d9d4e6a
rm flake8 ignores
Dec 12, 2021
b617532
flake8 errors fixed
Dec 12, 2021
4910de9
fix
Dec 12, 2021
125999c
fix bias_removal weeks
Dec 12, 2021
87eb677
fix
Dec 12, 2021
0e6c3be
fix
Dec 12, 2021
7143406
fix weekofyear
Dec 12, 2021
80376f2
Update reference_forecast.rst
aaronspring Dec 12, 2021
c23e1a7
Update classes.py
aaronspring Dec 12, 2021
1b5ebec
fix
Dec 12, 2021
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
19 changes: 16 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ repos:
hooks:
- id: isort

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910-1
hooks:
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910-1
hooks:
- id: mypy
exclude: "asv_bench"
additional_dependencies: [
Expand All @@ -44,3 +44,16 @@ repos:
# Dependencies that are typed
numpy,
]

- repo: https://github.com/pycqa/pydocstyle
rev: 6.1.1
hooks:
- id: pydocstyle
args:
- --ignore=W503
- --max-line-length=93

- repo: https://github.com/pycqa/doc8
rev: 0.10.1
hooks:
- id: doc8
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ What's New
# cut border when saving (for maps)
mpl.rcParams["savefig.bbox"] = "tight"


climpred unreleased (202x-xx-xx)
================================

Expand Down
Loading