From 0c48e3012e4ef7545551a9ef06b77fa3f30d0582 Mon Sep 17 00:00:00 2001 From: jkobject Date: Wed, 4 Sep 2024 17:47:47 +0200 Subject: [PATCH] =?UTF-8?q?release:=20version=201.1.2=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.md | 6 ++++++ grnndata/VERSION | 2 +- pyproject.toml | 53 +++++++++--------------------------------------- 3 files changed, 17 insertions(+), 44 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index f5122b6..71b9496 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -4,6 +4,12 @@ Changelog (unreleased) ------------ +- More tests. [jkobject] + + +1.1.1 (2024-09-04) +------------------ +- Release: version 1.1.1 🚀 [jkobject] - Makefile update. [jkobject] diff --git a/grnndata/VERSION b/grnndata/VERSION index 524cb55..45a1b3f 100644 --- a/grnndata/VERSION +++ b/grnndata/VERSION @@ -1 +1 @@ -1.1.1 +1.1.2 diff --git a/pyproject.toml b/pyproject.toml index 759fcb6..d6ffbb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "grnndata" -version = "1.1.1" +version = "1.1.2" description = "Awesome gene regulatory network enhanced anndata" authors = [ "jkobject",] readme = [ "README.md", "LICENSE",] @@ -27,51 +27,18 @@ powerlaw = "*" pyvis = "*" d3graph = "*" scanpy = "*" +pytest = { version = "^7.4.3", optional = true } +coverage = { version = "^7.3.2", optional = true } +flake8 = { version = "^6.1.0", optional = true } +black = { version = "^23.10.1", optional = true } +isort = { version = "^5.12.0", optional = true } +pytest-cov = { version = "^4.1.0", optional = true } +mypy = { version = "^1.6.1", optional = true } +gitchangelog = { version = "^3.0.4", optional = true } +mkdocs = { version = "^1.5.3", optional = true } [tool.poetry.extras] dev = [ "pytest", "toml", "coverage", "flake8", "black", "isort", "pytest-cov", "mypy", "gitchangelog", "mkdocs", "mkdocs-git-revision-date-localized-plugin", "mkdocstrings", "mkdocs-git-authors-plugin", "mkdocs-jupyter", "mkdocstrings-python"] [tool.poetry.scripts] grnndata = "grnndata.__main__:main" - - - -[tool.poetry.dependencies.pytest] -version = "1.1.1" -optional = true - -[tool.poetry.dependencies.coverage] -version = "1.1.1" -optional = true - -[tool.poetry.dependencies.flake8] -version = "1.1.1" -optional = true - -[tool.poetry.dependencies.black] -version = "1.1.1" -optional = true - -[tool.poetry.dependencies.isort] -version = "1.1.1" -optional = true - -[tool.poetry.dependencies.pytest-cov] -version = "1.1.1" -optional = true - -[tool.poetry.dependencies.mypy] -version = "1.1.1" -optional = true - -[tool.poetry.dependencies.gitchangelog] -version = "1.1.1" -optional = true - -[tool.poetry.dependencies.mkdocs] -version = "1.1.1" -optional = true - -[tool.poetry.dependencies.toml] -version = "1.1.1" -optional = true