Skip to content

Commit 8300d12

Browse files
committed
New Fixes
1 parent a89bf5c commit 8300d12

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

easymodels/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
__version__ = 1.3

easymodels/__main__.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
from easymodels.utils import *
21
import requests, time
2+
from easymodels.utils import *
33
import sys
4-
def start():
5-
Menu.main()
6-
7-
__version__ = "1.3"
84

9-
if __name__ == "__main__":
5+
__version__ = "1.3.1"
6+
7+
def start():
108
sys.stdout.flush()
119
print('Checking For Updates...')
1210
r = requests.get('https://raw.githubusercontent.com/M4cs/EasyModels/master/version.txt').text.replace('\n', '').replace('\r', '')
1311
if r != __version__:
14-
print('Update Available Please Run "pip install easymodules --upgrade" to update to the latest version!')
12+
print('Update Available Please Run "pip install easymodules --upgrade --no-cache-dir" to update to the latest version!')
1513
time.sleep(1)
1614
else:
1715
print('All Up To Date! Starting EasyModels CLI')
16+
Menu.main()
17+
18+
if __name__ == "__main__":
1819
start()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def readme():
99

1010
setuptools.setup(
1111
name="EasyModels",
12-
version="1.3",
12+
version="1.3.1",
1313
author="Max Bridgland",
1414
install_requires=[
1515
'requests==2.21.0',

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3
1+
1.3.1

0 commit comments

Comments
 (0)