Python decorator and command to automate deprecating components
Project description
Auto deprecator
Python decorator and command to automate deprecating components
Free software: MIT license
Documentation: https://auto-deprecator.readthedocs.io.
How does it work?
We believe that deprecating a component in your library should work in the following ways
Alert the users the deprecation time
When the user calls the methods or initializes the objects which will be deprecated in the next version or on an expected date, the user should receive the warning of the future deprecation but get the return in success.
from auto_deprecator import deprecate
@deprecate(expiry='2.0.0')
def old_hello_world():
return print("Hello world!")
>>> old_hello_world()
Hello world!
DeprecationWarning: The function "old_hello_world" will be deprecated in version 2.0.0
Test as if deprecated
Before the component is deprecated, unit / integration testing should be run to ensure the deprecation does not break the existing flow. Pass in the environment variables in the testing to simulate that the version is deployed.
(bash) hello-world-app
Hello world!
DeprecationWarning: The function "old_hello_world" will be deprecated in version 2.0.0
(bash) DEPRECATED_VERSION=2.0.0 hello-world-app
Traceback (most recent call last):
...
RuntimeError: The function "old_hello_world" is deprecated in version 2.0.0
Automatic deprecation before release
Deprecating the functions is no longer a manual work. Every time before release, run the command auto-deprecate to remove the functions deprecated in the coming version.
(bash) auto-deprecate hello_world.py --version 2.0.0
(bash) git diff
diff --git a/hello_world.py b/hello_world.py
index 201e546..ec41365 100644
--- a/hello_world.py
+++ b/hello_world.py
@@ -1,8 +1,2 @@
-from auto_deprecator import deprecate
-
def hello_world():
return print("Hello world!")
-
-@deprecate(expiry='2.0.0')
-def old_hello_world():
- return print("Hello world!")
History
0.1.0 (2019-12-26)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for auto_deprecator-2020.1.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3909ea2b482c7475f715f9bf6815ee701d6f8609bd8c30407cc4702cdad29c5 |
|
MD5 | c246fba106aa2066841eaf15ea1101f4 |
|
BLAKE2b-256 | 8ba37fd8d13e1e94fb7ec92826bfbc4ef26634732669167c56ed373181bac5e7 |