From 4e022d82eb6dff8bb128720d10a6878cb4bdaec2 Mon Sep 17 00:00:00 2001 From: mathurinm Date: Tue, 8 Apr 2025 17:48:21 +0200 Subject: [PATCH] REL release 0.4 --- doc/changes/0.4.rst | 2 +- pyproject.toml | 4 ++++ skglm/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/changes/0.4.rst b/doc/changes/0.4.rst index 3a998c4d0..165d23cdb 100644 --- a/doc/changes/0.4.rst +++ b/doc/changes/0.4.rst @@ -1,6 +1,6 @@ .. _changes_0_4: -Version 0.4 (in progress) +Version 0.4 (2023/04/08) ------------------------- - Add :ref:`GroupLasso Estimator ` (PR: :gh:`228`) - Add support and tutorial for positive coefficients to :ref:`Group Lasso Penalty ` (PR: :gh:`221`) diff --git a/pyproject.toml b/pyproject.toml index 34ec1a49f..a7529dbf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,3 +55,7 @@ doc = [ "furo", "lifelines", ] + + +[tool.setuptools] +license-files = [] diff --git a/skglm/__init__.py b/skglm/__init__.py index d80de3c17..2348fcf9a 100644 --- a/skglm/__init__.py +++ b/skglm/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.4dev' +__version__ = '0.4' from skglm.estimators import ( # noqa F401 Lasso, WeightedLasso, ElasticNet, MCPRegression, MultiTaskLasso, LinearSVC,