From c6aed1132caf228485e38b8808b90d98300ec38d Mon Sep 17 00:00:00 2001 From: vincent d warmerdam Date: Tue, 12 Dec 2023 20:55:31 +0100 Subject: [PATCH] Version 0.7.0 bump (#600) * version bump * docs update * minor revamp --------- Co-authored-by: Vincent Warmerdam --- Makefile | 14 +++----------- mkdocs.yaml | 1 + sklego/__init__.py | 2 +- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 38fa056d7..cb9de6441 100644 --- a/Makefile +++ b/Makefile @@ -9,26 +9,18 @@ install: pip install -e ".[dev]" pre-commit install -doctest: - python -m doctest -v sklego/*.py - -test-notebooks: - pytest --nbval-lax doc/*.ipynb - -test: doctest +test: pytest --disable-warnings --cov=sklego rm -rf .coverage* - pytest --nbval-lax doc/*.ipynb precommit: pre-commit run docs: - pip install -e ".[docs]" mkdocs serve -docs-deploy: docs - netlify deploy --dir=docs --prod +docs-deploy: + mkdocs gh-deploy clean: rm -rf .pytest_cache diff --git a/mkdocs.yaml b/mkdocs.yaml index f5007c251..2fd963954 100644 --- a/mkdocs.yaml +++ b/mkdocs.yaml @@ -60,6 +60,7 @@ plugins: handlers: python: options: + show_symbol_type_toc: true docstring_style: numpy docstring_section_style: table # table, list or spacy filters: diff --git a/sklego/__init__.py b/sklego/__init__.py index 578a29820..49e0fc1e0 100644 --- a/sklego/__init__.py +++ b/sklego/__init__.py @@ -1 +1 @@ -__version__ = "0.6.16" +__version__ = "0.7.0"