Skip to content

Commit e9acaf5

Browse files
committed
prepare release for 1.0.9 (1.0.1 tomorrow)
1 parent cc4a538 commit e9acaf5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
author = "Xiaojie Qiu, Yan Zhang, Ke Ni"
8383

8484
# The full version, including alpha/beta/rc tags
85-
release = "1.0.0"
85+
release = "1.0.9"
8686

8787
# -- General configuration ---------------------------------------------------
8888

dynamo/preprocessing/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@
1010
filter_cells_by_outliers,
1111
filter_cells_legacy,
1212
filter_genes_by_clusters_,
13-
)
14-
from .preprocess import filter_genes_by_outliers
15-
from .preprocess import filter_genes_by_outliers as filter_genes
16-
from .preprocess import (
13+
filter_genes_by_outliers,
1714
get_svr_filter,
1815
highest_frac_genes,
1916
normalize_cell_expr_by_size_factors_legacy,
@@ -35,7 +32,10 @@
3532
top_pca_genes,
3633
)
3734

35+
filter_cells = filter_cells_by_outliers
36+
filter_genes = filter_genes_by_outliers
3837
log1p = log1p_adata
38+
normalize_cells = normalize_cell_expr_by_size_factors
3939

4040
from .preprocess_monocle_utils import estimate_dispersion, top_table
4141
from .Preprocessor import Preprocessor

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
if __name__ == "__main__":
1313
setup(
1414
name="dynamo-release",
15-
version="v1.0.0",
15+
version="v1.0.9",
1616
python_requires=">=3.7",
1717
install_requires=[l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()], # 'yt>=3.5.1',
1818
extras_require={

0 commit comments

Comments
 (0)