Skip to content

Commit

Permalink
Bump version: 1.0.2 → 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mumichae committed Jun 22, 2022
1 parent 3a75a3a commit 6c713c6
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 59 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.2
1.0.3
96 changes: 38 additions & 58 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.2
current_version = 1.0.3
commit = True
tag = True

Expand All @@ -17,15 +17,15 @@ author = Malte D. Luecken, Maren Buettner, Daniel C. Strobl, Michaela F. Mueller
author_email = malte.luecken@helmholtz-muenchen.de, michaela.mueller@helmholtz-muenchen.de
license = MIT
url = https://github.com/theislab/scib
project_urls =
project_urls =
Pipeline = https://github.com/theislab/scib-pipeline
Reproducibility = https://theislab.github.io/scib-reproducibility
Bug Tracker = https://github.com/theislab/scib/issues
keywords =
keywords =
benchmarking
single cell
data integration
classifiers =
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: Science/Research
Expand All @@ -39,11 +39,11 @@ classifiers =
build_number = 1

[options]
packages =
packages =
scib
scib.metrics
python_requires = >=3.7
install_requires =
install_requires =
numpy
pandas
seaborn
Expand All @@ -66,7 +66,7 @@ install_requires =
zip_safe = False

[options.package_data]
scib =
scib =
resources/*.txt
knn_graph/*

Expand All @@ -93,58 +93,38 @@ skip_glob = docs/*
line-length = 120
target-version = py38
include = \.pyi?$
exclude =
.eggs
.git
.venv
build
dist
exclude =
.eggs
.git
.venv
build
dist

[flake8]
max-line-length = 88
ignore =
# line break before a binary operator -> black does not adhere to PEP8
W503
# line break occurred after a binary operator -> black does not adhere to PEP8
W504
# line too long -> we accept long comment lines; black gets rid of long code lines
E501
# whitespace before : -> black does not adhere to PEP8
E203
# missing whitespace after ,', ';', or ':' -> black does not adhere to PEP8
E231
# continuation line over-indented for hanging indent -> black does not adhere to PEP8
E126
# E266 too many leading '#' for block comment -> this is fine for indicating sections
E262
# Do not assign a lambda expression, use a def -> lambda expression assignments are convenient
E731
# allow I, O, l as variable names -> I is the identity matrix, i, j, k, l is reasonable indexing notation
E741
# Missing docstring in public package
D104
# ... imported but unused
F401
# Missing docstring in public module
D100
# Missing docstring in __init__
D107
# Do not perform function calls in argument defaults.
B008
# line break before binary operator
W503
# Missing docstring in magic method
D105
# whitespace before ':'
E203
# format string does contain non-indexed parameters
P101
# Unknown interpreted text role "func"
RST304
# Unnecessary dict call - rewrite as a literal
C408
ignore =
W503
W504
E501
E203
E231
E126
E262
E731
E741
D104
F401
D100
D107
B008
W503
D105
E203
P101
RST304
C408
exclude = .git,__pycache__,build,docs/_build,dist
per-file-ignores =
scib/*: D
tests/*: D
*/__init__.py: F401
per-file-ignores =
scib/*: D
tests/*: D
*/__init__.py: F401

0 comments on commit 6c713c6

Please sign in to comment.