Skip to content

Commit 5ab9f1a

Browse files
committed
Silly me, 1.5.1
1 parent c61976a commit 5ab9f1a

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

easymodels/__main__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
import requests, time
22
from easymodels.utils import *
3-
from configparser import ConfigParser
43
import argparse
54
import sys
65
import os
7-
import pydux
86

97
parser = argparse.ArgumentParser()
108
parser.add_argument('-gd', '--gui-dark', help='Start with GUI in Dark Mode and Set To Default', action='store_true')
119
parser.add_argument('-g', '--gui', help='Start with GUI in Light Mode and Set To Default', action='store_true')
1210
args = parser.parse_args()
1311

1412

15-
__version__ = "1.5"
13+
__version__ = "1.5.1"
1614

1715
def create_config():
1816
with open('config.ini', 'w') as f:

easymodels/utils/menu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def main():
1616
while True:
1717
print("""\
1818
\n\n
19-
EasyModels v1.5\n
19+
EasyModels v1.5.1\n
2020
\tEasyModels is a tool to quickly, and easily find pre-trained AI
2121
\tmodels for your project. It uses the modelzoo.co API and offers
2222
\tinformation about the pre-trained models in an easy to view way.

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.5",
12+
version="1.5.1",
1313
author="Max Bridgland",
1414
install_requires=[
1515
'requests==2.21.0',

upload.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python setup.py sdist bdist_wheel && twine upload ./dist/*

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5
1+
1.5.1

0 commit comments

Comments
 (0)