-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 0.10.0: migration to rio-tiler (#183)
* [wip] start refactoring to rio-tiler * Trim whitespace assets * Bump license year * Run black * Fix GitHub Action syntax * Use pre-commit * fix flake8 * Update requirements * deps * comments * Update dependencies * Fix bounds * [wip] Generally working * Cleanup classes and remove remote stuff * [wip] nearly working * Fix Cesium basemap sources * [wip] seemingly fully working * Fix vmin/vmax * [wip] more implementation * [wip] Cleanup tiler * Improve deps * Tersts are passing * Cover bahamas to COG * Support multiple band indexes * Update example * Cleanup docs * Strip out geojs * Use leaflets new add method * Cleanup * Fix multiband test * Better metadata * Improve tests * Linting * remove codespell check * Fix typing * Type annotations * Erg, when does 3.8 EoL?
- Loading branch information
1 parent
41aed45
commit fe7c7cf
Showing
75 changed files
with
2,462 additions
and
4,422 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,23 @@ | ||
[flake8] | ||
exclude = .git,__pycache__,build,dist,doc/build | ||
ignore = | ||
# whitespace before ':' | ||
E203, | ||
# line break before binary operator | ||
W503, | ||
# line length too long | ||
E501, | ||
# do not assign a lambda expression, use a def | ||
E731, | ||
# too many leading '#' for block comment | ||
E266, | ||
# ambiguous variable name | ||
E741, | ||
# module level import not at top of file | ||
E402, | ||
# Quotes (temporary) | ||
Q0, | ||
# bare excepts (temporary) | ||
B001, E722 | ||
# we already check black | ||
BLK100 |
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,7 +1,8 @@ | ||
name: Package Release | ||
on: | ||
push: | ||
tags: "*" | ||
tags: | ||
- "*" | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
|
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,50 @@ | ||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 23.12.1 | ||
hooks: | ||
- id: black | ||
|
||
- repo: https://github.com/pycqa/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-merge-conflict | ||
- id: debug-statements | ||
- id: requirements-txt-fixer | ||
- id: trailing-whitespace | ||
- id: check-docstring-first | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
|
||
- repo: https://github.com/python-jsonschema/check-jsonschema | ||
rev: 0.27.3 | ||
hooks: | ||
- id: check-github-workflows | ||
|
||
|
||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 3.9.2 | ||
hooks: | ||
- id: flake8 | ||
additional_dependencies: [ | ||
"flake8-black==0.3.6", | ||
"flake8-isort==6.0.0", | ||
"flake8-quotes==3.3.2", | ||
] | ||
|
||
|
||
# - repo: https://github.com/codespell-project/codespell | ||
# rev: v2.2.6 | ||
# hooks: | ||
# - id: codespell | ||
# args: [ | ||
# "doc examples examples_trame pyvista tests", | ||
# "*.py *.rst *.md", | ||
# ] | ||
# additional_dependencies: [ | ||
# "tomli" | ||
# ] |
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
Oops, something went wrong.