-
-
Notifications
You must be signed in to change notification settings - Fork 997
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #321 from davidteather/nightly
Deprecation Warnings
- Loading branch information
Showing
3 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import subprocess | ||
import sys | ||
import pkg_resources | ||
|
||
def update_messager(): | ||
#if not check("TikTokApi"): | ||
# Outdated | ||
# print("TikTokApi package is outdated, please consider upgrading! \n(You can suppress this by setting ignore_version to True while calling the TikTok Api class)") | ||
|
||
if not check_future_deprecation(): | ||
print("Your version of python is going to be deprecated, for future updates upgrade to 3.7+") | ||
|
||
def check(name): | ||
|
||
latest_version = str(subprocess.run([sys.executable, '-m', 'pip', 'install', '{}==random'.format(name)], capture_output=True, text=True)) | ||
latest_version = latest_version[latest_version.find('(from versions:')+15:] | ||
latest_version = latest_version[:latest_version.find(')')] | ||
latest_version = latest_version.replace(' ','').split(',')[-1] | ||
|
||
current_version = str(subprocess.run([sys.executable, '-m', 'pip', 'show', '{}'.format(name)], capture_output=True, text=True)) | ||
current_version = current_version[current_version.find('Version:')+8:] | ||
current_version = current_version[:current_version.find('\\n')].replace(' ','') | ||
|
||
if latest_version == current_version: | ||
return True | ||
else: | ||
return False | ||
|
||
def check_future_deprecation(): | ||
return sys.version_info >= (3, 7) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters