Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add deprecation notice #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
carchivetools
=============

**Notice** The package is considered to be deprecated in favor of
[aaclient](https://github.com/mdavidsaver/aaclient).

<a href="https://travis-ci.org/epicsdeb/carchivetools">
<img src="https://travis-ci.org/epicsdeb/carchivetools.svg" title="Build Status Images">
</a>
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@

from numpy.distutils.misc_util import get_numpy_include_dirs

import warnings

if sys.version_info<(3,7):
import warnings
warnings.warn("Python < 3.7 is no longer supported")

warnings.warn("Deprecated in favor of https://github.com/mdavidsaver/aaclient")

class GenProtobuf(Command):
"""Run protoc code generator
"""
Expand Down