-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* CI, bump python-setup to v4 * Trying to isolate the problem * Rolling 3.8 out, adding 3.11 * Skip all failing tests, and start tracking down * Optional depdencies for development & testing * Cleaning pytest in setup.cfg * Adding dev optional-dependencies in GA * Re-activating one test at a time * Using python-CMR instead of builtin I created this module before python-CMR. Let's move to that one instead of my builtin. The API keeps changing, so hopefully they will keep that library up to date. * style: Improving style and updating syntax * fix: Updating test for new filename syntax * fix: New Aqua filename syntax * fix: Renaming TERRA products with new name standard * fix: More on TERRA filename standard * fix: AQUA-L2 new filename pattern * Temporary skip S3Storage test * Temporary off this test * Re-activating some tests with updated filenames * fix: Updating VIIRS filenames * fix: Updating another TERRA outdated filename * test: Reactivating tests and updating those * Updating test files to be cached * style: Updating syntax * style: Updating syntax * Adding dask as requirement for parallel processing * style: Fixing syntax * doc: Updating expected filename syntax * Adding pre-commit config * Forget about flake8 * fix: Typo on formated string * info: Adding more log info to bloom_filter() * Removing unecessary check
- Loading branch information
Showing
19 changed files
with
390 additions
and
211 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
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 |
---|---|---|
|
@@ -103,4 +103,4 @@ ENV/ | |
.mypy_cache/ | ||
|
||
# IDE settings | ||
.vscode/ | ||
.vscode/ |
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,33 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
default_language_version: | ||
python: python3.10 | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.3.0 | ||
hooks: | ||
- id: check-ast | ||
- id: check-docstring-first | ||
- id: check-merge-conflict | ||
- id: check-yaml | ||
- id: check-toml | ||
- id: debug-statements | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-added-large-files | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v2.38.2 | ||
hooks: | ||
- id: pyupgrade | ||
args: [--py39-plus] | ||
- repo: https://github.com/psf/black | ||
rev: 22.8.0 | ||
hooks: | ||
- id: black | ||
args: [ --safe ] | ||
exclude: docs/conf.py | ||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
# Ruff version. | ||
rev: 'v0.0.237' | ||
hooks: | ||
- id: ruff |
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.