-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adjust margin and add random batch kbet score test * update python versions * update to 3.12 for metrics * set 3.11 as max python version (due to incompatibility with louvain) * update python version for readthedocs build * reduce number of kbet tests
- Loading branch information
Showing
5 changed files
with
39 additions
and
18 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
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 |
---|---|---|
|
@@ -17,34 +17,34 @@ author = Malte D. Luecken, Maren Buettner, Daniel C. Strobl, Michaela F. Mueller | |
author_email = [email protected], [email protected] | ||
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 | ||
Topic :: Software Development :: Build Tools | ||
License :: OSI Approved :: MIT License | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
|
||
[bdist_wheel] | ||
build_number = 1 | ||
|
||
[options] | ||
packages = | ||
packages = | ||
scib | ||
scib.metrics | ||
python_requires = >=3.8 | ||
install_requires = | ||
python_requires = >=3.9 | ||
install_requires = | ||
numpy | ||
pandas>=2 | ||
seaborn | ||
|
@@ -65,7 +65,7 @@ install_requires = | |
zip_safe = False | ||
|
||
[options.package_data] | ||
scib = | ||
scib = | ||
resources/*.txt | ||
knn_graph/* | ||
|
||
|
@@ -93,9 +93,9 @@ skip_glob = docs/* | |
|
||
[tool.black] | ||
line-length = 120 | ||
target-version = py38 | ||
target-version = py311 | ||
include = \.pyi?$ | ||
exclude = | ||
exclude = | ||
.eggs | ||
.git | ||
.venv | ||
|
@@ -104,7 +104,7 @@ exclude = | |
|
||
[flake8] | ||
max-line-length = 88 | ||
ignore = | ||
ignore = | ||
W503 | ||
W504 | ||
E501 | ||
|
@@ -126,7 +126,7 @@ ignore = | |
RST304 | ||
C408 | ||
exclude = .git,__pycache__,build,docs/_build,dist | ||
per-file-ignores = | ||
per-file-ignores = | ||
scib/*: D | ||
tests/*: D | ||
*/__init__.py: F401 |
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