Skip to content

Commit

Permalink
release 0.5.1 to fix subpackages (#157)
Browse files Browse the repository at this point in the history
* 0.5.1 release with subpacka

* noqa fixes autosave annoyingly moving numpy up
  • Loading branch information
mathurinm authored Oct 12, 2020
1 parent c0134d4 commit 4429a23
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
12 changes: 5 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,15 @@ To build the documentation you will need to run:
Demos & Examples
================

You find on the documentation examples on the `Leukemia
dataset <https://mathurinm.github.io/celer/auto_examples/plot_leukemia_path.html>`__
(comparison with scikit-learn) and on the `Finance/log1p
dataset <https://mathurinm.github.io/celer/auto_examples/plot_finance_path.html>`__
(more significant, but it takes times to download the data, preprocess
it, and compute the path).
In the `example section <https://mathurinm.github.io/celer/auto_examples/index.html>`__ of the documentation,
you will find numerous examples on real life datasets,
timing comparison with other estimators, easy and fast ways to perform cross validation, etc.


Dependencies
============

All dependencies are in ``./setup.py`` file.
All dependencies are in the ``./requirements.txt`` file.

Cite
====
Expand Down
2 changes: 1 addition & 1 deletion celer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
GroupLassoCV, MultiTaskLasso, MultiTaskLassoCV)


__version__ = '0.6dev'
__version__ = '0.5.1'
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
from setuptools.command.build_ext import build_ext
from setuptools import setup, Extension
from setuptools import dist, setup, Extension, find_packages
import os
from setuptools import dist
dist.Distribution().fetch_build_eggs(['numpy>=1.12'])
import numpy as np
import numpy as np # noqa


descr = 'Fast algorithm with dual extrapolation for the Lasso'
descr = 'Fast algorithm with dual extrapolation for sparse problems'

version = None
with open(os.path.join('celer', '__init__.py'), 'r') as fid:
Expand Down Expand Up @@ -38,7 +36,7 @@
install_requires=['numpy>=1.12', 'seaborn>=0.7', 'scipy>=0.18.0',
'matplotlib>=2.0.0', 'Cython>=0.26',
'scikit-learn>=0.23', 'xarray', 'download', 'tqdm'],
packages=['celer'],
packages=find_packages(),
cmdclass={'build_ext': build_ext},
ext_modules=[
Extension('celer.lasso_fast',
Expand Down

0 comments on commit 4429a23

Please sign in to comment.