Skip to content

Commit

Permalink
🎨 Docs: Replaced all emoji shortcodes with original emojis in README.md.
Browse files Browse the repository at this point in the history
⏪️ Setup: Reverted to `>=` comparison operator.
  • Loading branch information
abhiTronix committed Jul 6, 2022
1 parent f0e9aa0 commit 6e4eaf6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -636,16 +636,16 @@ Whereas supported protocol are: `tcp` and `ipc`.
# Contributions

<div align="center">
<h3>:crown: Contributor Hall of Fame :crown:</h3><br>
<h3>👑 Contributor Hall of Fame 👑</h3><br>
<a href="https://github.com/abhiTronix/vidgear/graphs/contributors">
<img src="https://contributors-img.web.app/image?repo=abhiTronix/vidgear"/><br><br>
</a>
<p><i>We're happy to meet new contributors:heartpulse:</i></p><br>
<p><i>We're happy to meet new contributors💗</i></p><br>
</div>

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!

&nbsp;

Expand All @@ -656,10 +656,10 @@ We're offering support for VidGear on [**Gitter Community Channel ➶**](https:/

<div align="center">
<img src="docs/overrides/assets/images/help_us.png" alt="PiGear" width="50%" />
<p><i>VidGear is free and open source and will always remain so. :heart:</i></p>
<p><i>VidGear is free and open source and will always remain so. ❤️</i></p>
</div>

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 🙂

<a href='https://ko-fi.com/W7W8WTYO' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://cdn.ko-fi.com/cdn/kofi1.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""


Expand Down

0 comments on commit 6e4eaf6

Please sign in to comment.