Skip to content

Commit 770a27a

Browse files
don't specify version in testingbotclient
1 parent 8337bc8 commit 770a27a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55

66
import os
77
import setuptools
8-
from testingbotclient import __version__
98

109

1110
setuptools.setup(
1211
name='testingbotclient',
13-
version=__version__,
12+
version='0.1.1',
1413
py_modules=['testingbotclient'],
1514
author='TestingBot',
1615
author_email='[email protected]',

testingbotclient.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
from requests.auth import HTTPBasicAuth
99
import hashlib
1010

11-
__version__ = '0.1.0'
12-
1311
class TestingBotException(Exception):
1412
def __init__(self, *args, **kwargs):
1513
super(TestingBotException, self).__init__(*args)

0 commit comments

Comments
 (0)