[Git][debian-gis-team/opendatacube][master] 2 commits: New upstream version 1.8.3

Angelos Tzotsos gitlab at salsa.debian.org
Mon Jan 4 18:12:14 GMT 2021



Angelos Tzotsos pushed to branch master at Debian GIS Project / opendatacube


Commits:
44e86267 by Angelos Tzotsos at 2021-01-04T20:11:38+02:00
New upstream version 1.8.3
- - - - -
d2d2104b by Angelos Tzotsos at 2021-01-04T20:11:43+02:00
Update upstream source from tag 'upstream/1.8.3'

Update to upstream version '1.8.3'
with Debian dir ef8031fbed2a5329ae5fbb293ce0879e88d7632c
- - - - -


8 changed files:

- + .coveragerc
- + .dockerignore
- + .editorconfig
- + .gitattributes
- + .gitignore
- + .mergify.yml
- + .pre-commit-config.yaml
- + .yamllint


Changes:

=====================================
.coveragerc
=====================================
@@ -0,0 +1,20 @@
+# .coveragerc to control coverage.py (and pytest-cov)
+[run]
+branch = False
+omit =
+    datacube/_version.py
+
+[report]
+# Regexes for lines to exclude from consideration
+exclude_lines = 
+    # Have to re-enable the standard pragma
+    pragma: no cover
+    ^except ImportError:$
+
+    # Don't complain if tests don't hit defensive assertion code:
+    raise AssertionError
+    raise NotImplementedError
+
+    # Don't complain if non-runnable code isn't run:
+    if 0:
+    if __name__ == .__main__.:


=====================================
.dockerignore
=====================================
@@ -0,0 +1,7 @@
+.appveyor
+.circleci
+.github
+.travis
+contrib
+examples
+integration_tests


=====================================
.editorconfig
=====================================
@@ -0,0 +1,23 @@
+# EditorConfig is awesome: http://EditorConfig.org
+#
+# Use as master: https://github.com/TYPO3-Documentation/T3DocTeam/blob/master/.editorconfig
+
+# top-most EditorConfig file
+root = true
+
+[{*.rst,*.rst.txt}]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+indent_style = space
+indent_size = 3
+
+# MD-Files
+[*.md]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+indent_style = space
+indent_size = 4


=====================================
.gitattributes
=====================================
@@ -0,0 +1,15 @@
+* text=auto
+
+datacube/version.py  export-subst
+
+*.sh text eol=lf
+*.bash text eol=lf
+*.pbs text eol=lf
+
+*.egg binary
+*.jpg binary
+*.hdr binary
+*.bin binary
+*.tif binary
+
+datacube/_version.py export-subst


=====================================
.gitignore
=====================================
@@ -0,0 +1,84 @@
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+env/
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# PyInstaller
+#  Usually these files are written by a python script from a template
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*,cover
+.hypothesis
+.pytest_cache
+.mypy_cache
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+.idea/
+
+# iPython Notebook
+.ipynb_checkpoints
+
+# Mac OS X
+.DS_Store
+docs/html/
+
+# Generated Documentation
+generate/
+docs/notebooks/
+
+#Local Visual Studio Code configurations
+.vscode/
+.env
+
+# Auto generated by setuptools_scm
+datacube/_version.py
+
+# Local integration test generated dask locks
+global.lock
+purge.lock
+worker-*.dirlock


=====================================
.mergify.yml
=====================================
@@ -0,0 +1,19 @@
+pull_request_rules:
+- name: rebase automatically into develop
+  conditions:
+  - label!=no-mergify
+  - label!=work-in-progress
+  - '#approved-reviews-by>=1'
+  - "#changes-requested-reviews-by=0"
+  - base=develop
+  - status-success=build
+  - status-success=Docker (test runner)
+  actions:
+    merge:
+      method: rebase
+      rebase_fallback: merge
+- name: delete head branch after merge
+  conditions:
+    - merged
+  actions:
+    delete_head_branch: {}


=====================================
.pre-commit-config.yaml
=====================================
@@ -0,0 +1,23 @@
+repos:
+    - repo: https://github.com/adrienverge/yamllint.git
+      rev: v1.19.0
+      hooks:
+        - id: yamllint
+    - repo: https://github.com/pre-commit/pre-commit-hooks
+      rev: v2.4.0
+      hooks:
+        - id: flake8
+        - 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: v2.4.4  # Use the sha / tag you want to point at
+        hooks:
+        -   id: pylint


=====================================
.yamllint
=====================================
@@ -0,0 +1,34 @@
+extends: default
+
+rules:
+    # We could enable these if we find a decent yaml autoformatter.
+    # (yamlfmt in pip is too buggy at the moment for our files)
+    #
+    # The effort of fixing them by hand, especially auto-generated yamls, is not
+    # currently worth it.
+
+    # Many tools (eg. generated secure keys) don't output wrapped lines.
+    line-length: disable
+
+    # Pedantry & existing docs don't have it.
+    document-start: disable
+
+    # Warning that truthy values are not quoted.
+    # Many documents currently use "True" without quotes, so this would be a
+    # larger change across almost every doc.
+    truthy: disable
+
+    # Whitespace issues: hundreds in existing docs.
+    indentation: disable
+    trailing-spaces: disable
+    commas: disable
+    new-line-at-end-of-file: disable
+    brackets: disable
+    hyphens: disable
+    colons: disable
+    comments: disable
+    comments-indentation: disable
+
+
+
+



View it on GitLab: https://salsa.debian.org/debian-gis-team/opendatacube/-/compare/83d34f605d6a53dce2e742bbcebc5a2553cde189...d2d2104bf06b24fdcf841b807fe3f57c5fbdbbf5

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/opendatacube/-/compare/83d34f605d6a53dce2e742bbcebc5a2553cde189...d2d2104bf06b24fdcf841b807fe3f57c5fbdbbf5
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20210104/66637c81/attachment-0001.html>


More information about the Pkg-grass-devel mailing list