From 6e4eaf6e8f29f4145afabf96d3fc30c8b81f69fc Mon Sep 17 00:00:00 2001 From: abhiTronix Date: Wed, 6 Jul 2022 07:58:52 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Docs:=20Replaced=20all=20emoji?= =?UTF-8?q?=20shortcodes=20with=20original=20emojis=20in=20README.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ⏪️ Setup: Reverted to `>=` comparison operator. --- README.md | 12 ++++++------ setup.py | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d84ede884..fd5ef55fc 100644 --- a/README.md +++ b/README.md @@ -636,16 +636,16 @@ Whereas supported protocol are: `tcp` and `ipc`. # Contributions
-

:crown: Contributor Hall of Fame :crown:


+

👑 Contributor Hall of Fame 👑




-

We're happy to meet new contributors:heartpulse:


+

We're happy to meet new contributors💗


-We welcome your contributions to help us improve and extend this project. If you want to get involved with VidGear development, checkout the **[Contribution Guidelines ➶][contribute]** +We welcome your contributions to help us improve and extend this project. If you want to get involved with VidGear development, checkout the **[Contribution Guidelines ▶️][contribute]** -We're offering support for VidGear on [**Gitter Community Channel ➶**](https://gitter.im/vidgear/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge). Come and join the conversation over there! +We're offering support for VidGear on [**Gitter Community Channel**](https://gitter.im/vidgear/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge). Come and join the conversation over there!   @@ -656,10 +656,10 @@ We're offering support for VidGear on [**Gitter Community Channel ➶**](https:/
PiGear -

VidGear is free and open source and will always remain so. :heart:

+

VidGear is free and open source and will always remain so. ❤️

-It is something I am doing with my own free time. But so much more needs to be done, and I need your help to do this. For just the price of a cup of coffee, you can make a difference :slightly_smiling_face: +It is something I am doing with my own free time. But so much more needs to be done, and I need your help to do this. For just the price of a cup of coffee, you can make a difference 🙂 Buy Me a Coffee at ko-fi.com diff --git a/setup.py b/setup.py index 2d233cd8e..f36bf8810 100644 --- a/setup.py +++ b/setup.py @@ -62,10 +62,10 @@ def latest_version(package_name): data = json.load(response) versions = list(data["releases"].keys()) versions.sort(key=parse_version) - return "~={}".format(versions[-1]) + return ">={}".format(versions[-1]) except TypeError as e: if versions: - return "~={}".format(versions[-1]) + return ">={}".format(versions[-1]) return ""