-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional grid option for expanded AOI (#4)
* add new extended grid * add new extended grid * Update odc/dscache/tools/tiling.py Co-authored-by: Robbi Bishop-Taylor <[email protected]> * Update odc/dscache/tools/tiling.py Co-authored-by: Robbi Bishop-Taylor <[email protected]> * install mising package * add precommit config * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * code formating * add yamllint config * update test env to py310 * please pylint * formating code * please mypy * disable mypy temprarily --------- Co-authored-by: Robbi Bishop-Taylor <[email protected]> Co-authored-by: Emma Ai <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c5955d8
commit 35c2f46
Showing
17 changed files
with
336 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[flake8] | ||
ignore = E731, E226, E203, W503 | ||
max-line-length = 120 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
repos: | ||
- repo: https://github.com/adrienverge/yamllint.git | ||
rev: v1.33.0 | ||
hooks: | ||
- id: yamllint | ||
args: ['-c', '.yamllint'] | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: end-of-file-fixer | ||
- id: check-docstring-first | ||
- id: check-json | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: name-tests-test | ||
args: ['--django'] | ||
- id: requirements-txt-fixer | ||
- id: check-added-large-files | ||
- id: check-merge-conflict | ||
- repo: https://github.com/pre-commit/mirrors-pylint | ||
rev: 'v3.0.0a5' # Use the sha / tag you want to point at | ||
hooks: | ||
- id: pylint | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: '7.0.0' | ||
hooks: | ||
- id: flake8 | ||
- repo: https://github.com/psf/black | ||
rev: 23.12.1 | ||
hooks: | ||
- id: black |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
extends: default | ||
|
||
rules: | ||
# Property-indent errors are very noisy as tools all make different choices. | ||
# Until a good yaml auto-indenter appears, we'll relax this rule. | ||
indentation: disable | ||
comments: disable | ||
comments-indentation: disable | ||
document-start: disable | ||
|
||
# URLs and base64 strings break this a lot, and multi-line URLs aren't | ||
# clearer. Not worth it. | ||
line-length: disable | ||
|
||
# Github Actions config uses the word 'on', but not as a truthy-value. | ||
truthy: | ||
ignore: | | ||
.github/workflows/*.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.2.2" | ||
__version__ = "0.2.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.