forked from scverse/squidpy
-
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.
Update precommit with mypy (scverse#200)
* Start mypy * Add mypy static checks * Update setup.py, add .bumpversion.cfg * Update tox.ini * Fix typo, add small mypy info to README.rst * Update mypy
- Loading branch information
Showing
46 changed files
with
885 additions
and
758 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,8 @@ | ||
[bumpversion] | ||
current_version = 0.0.0 | ||
commit = True | ||
tag = True | ||
files = setup.py squidpy/__init__.py | ||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) | ||
serialize = | ||
{major}.{minor}.{patch} |
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,46 +1,46 @@ | ||
codecov: | ||
require_ci_to_pass: true | ||
branch: master | ||
strict_yaml_branch: master | ||
require_ci_to_pass: true | ||
branch: master | ||
strict_yaml_branch: master | ||
|
||
coverage: | ||
precision: 2 | ||
round: down | ||
range: "80...100" | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 1% | ||
if_ci_failed: error | ||
only_pulls: true | ||
graph: | ||
paths: | ||
- squidpy/gr/ | ||
image: | ||
paths: | ||
- squidpy/im/ | ||
plotting: | ||
paths: | ||
- squidpy/pl/ | ||
patch: | ||
default: | ||
target: auto | ||
threshold: 0% | ||
if_ci_failed: error | ||
only_pulls: false | ||
precision: 2 | ||
round: down | ||
range: 80...100 | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 1% | ||
if_ci_failed: error | ||
only_pulls: true | ||
graph: | ||
paths: | ||
- squidpy/gr/ | ||
image: | ||
paths: | ||
- squidpy/im/ | ||
plotting: | ||
paths: | ||
- squidpy/pl/ | ||
patch: | ||
default: | ||
target: auto | ||
threshold: 0% | ||
if_ci_failed: error | ||
only_pulls: false | ||
|
||
parsers: | ||
gcov: | ||
branch_detection: | ||
conditional: yes | ||
loop: yes | ||
method: no | ||
macro: no | ||
gcov: | ||
branch_detection: | ||
conditional: yes | ||
loop: yes | ||
method: no | ||
macro: no | ||
|
||
comment: | ||
layout: "reach, diff, files" | ||
behavior: default | ||
require_changes: true | ||
branches: | ||
- master | ||
layout: reach, diff, files | ||
behavior: default | ||
require_changes: true | ||
branches: | ||
- master |
Oops, something went wrong.