Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/changes/0.4.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.. _changes_0_4:

Version 0.4 (in progress)
Version 0.4 (2023/04/08)
-------------------------
- Add :ref:`GroupLasso Estimator <skglm.GroupLasso>` (PR: :gh:`228`)
- Add support and tutorial for positive coefficients to :ref:`Group Lasso Penalty <skglm.penalties.WeightedGroupL2>` (PR: :gh:`221`)
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,7 @@ doc = [
"furo",
"lifelines",
]


[tool.setuptools]
license-files = []
2 changes: 1 addition & 1 deletion skglm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.4dev'
__version__ = '0.4'

from skglm.estimators import ( # noqa F401
Lasso, WeightedLasso, ElasticNet, MCPRegression, MultiTaskLasso, LinearSVC,
Expand Down
Loading