Skip to content
This repository has been archived by the owner on Feb 24, 2020. It is now read-only.

Commit

Permalink
deprecate this library (#141)
Browse files Browse the repository at this point in the history
* deprecate this library

* fix isort
  • Loading branch information
syphar authored Feb 24, 2020
1 parent 0c6d3c1 commit 724f0dc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
closeio
=======

Slim API wrapper to access close.io CRM
Slim API wrapper to access close.io CRM.

**This project is inactive since we are not using close.io any more. Don't hesitate to message us if you want to take over**

.. |version| image:: https://img.shields.io/pypi/v/faster_closeio.svg
:target: https://pypi.python.org/pypi/faster_closeio/
Expand Down
4 changes: 4 additions & 0 deletions closeio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import warnings

try:
from .closeio import CloseIO, CloseIOError # noqa
except ImportError:
pass

warnings.warn('Important: faster_closeio is no longer maintained. Please use the official close.io library instead: https://pypi.org/project/closeio/', DeprecationWarning)
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description-file = README.rst
home-page = https://github.com/Thermondo/closeio
license = Apache-2
classifier =
Development Status :: 4 - Beta
Development Status :: 7 - Inactive
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Expand Down

0 comments on commit 724f0dc

Please sign in to comment.