Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
bnaul committed May 10, 2024
1 parent 10e84be commit a192061
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
20 changes: 8 additions & 12 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
Python GLMNET
=============

|CircleCI| |Conda| |PyPI| |PyVersions|
|CircleCI| |PyPI| |PyVersions|

.. |CircleCI| image:: https://circleci.com/gh/civisanalytics/python-glmnet.svg?style=svg
:target: https://circleci.com/gh/civisanalytics/python-glmnet
:alt: Build status

.. |Conda| image:: https://anaconda.org/conda-forge/glmnet/badges/version.svg
:target: https://anaconda.org/conda-forge/glmnet
:alt: Latest version on conda forge

.. |PyPI| image:: https://img.shields.io/pypi/v/glmnet.svg
:target: https://pypi.org/project/glmnet/
.. |PyPI| image:: https://img.shields.io/pypi/v/python-glmnet.svg
:target: https://pypi.org/project/python-glmnet/
:alt: Latest version on PyPI

.. |PyVersions| image:: https://img.shields.io/pypi/pyversions/glmnet.svg
:target: https://pypi.org/project/glmnet/
.. |PyVersions| image:: https://img.shields.io/pypi/pyversions/python-glmnet.svg
:target: https://pypi.org/project/python-glmnet/
:alt: Supported python versions for python-glmnet

Fork of `python-glmnet <https://github.com/civisanalytics/python-glmnet>`_ with support for more recent
Fork of `python-glmnet <https://github.com/replicahq/python-glmnet>`_ with support for more recent
Python versions.

This is a Python wrapper for the fortran library used in the R package
Expand All @@ -38,7 +34,7 @@ Installation
requirements
~~~~~~~~~~~~

``python-glmnet`` requires Python version >= 3.6, ``scikit-learn``, ``numpy``,
``python-glmnet`` requires Python version >= 3.9, ``scikit-learn``, ``numpy``,
and ``scipy``. Installation from source or via ``pip`` requires a Fortran compiler.

conda
Expand All @@ -54,7 +50,7 @@ pip

.. code:: bash
pip install glmnet
pip install python-glmnet
source
Expand Down
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
[project]
name = "python-glmnet"
version = "2.2.2.post1"
version = "2.2.2.post2"
description = "Python wrapper for glmnet"
readme = 'README.rst'
requires-python = ">=3.9"
dependencies = [
"numpy>=1.9.2",
"scikit-learn>=0.18.0",
"scipy>=0.14.1",
"joblib>=0.14.1",
]

[build-system]
build-backend = "setuptools.build_meta"
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
" \n $ pip install numpy")


_VERSION = "2.2.2.post1"
_VERSION = "2.2.2.post2"

f_compile_args = ['-ffixed-form', '-fdefault-real-8']

Expand Down Expand Up @@ -68,8 +68,8 @@ def get_lib_dir(dylib):
long_description=read('README.rst'),
long_description_content_type="text/x-rst",
author="Civis Analytics Inc",
author_email="opensource@civisanalytics.com",
url="https://github.com/civisanalytics/python-glmnet",
author_email="opensource@replicahq.com",
url="https://github.com/replicahq/python-glmnet",
install_requires=[
"numpy>=1.9.2",
"scikit-learn>=0.18.0",
Expand Down

0 comments on commit a192061

Please sign in to comment.