Skip to content

Commit e0f6384

Browse files
committed
Changed to wheel and incremented minor version
1 parent 6cbfe14 commit e0f6384

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

blinkpy.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
import getpass
1818
import json
1919

20-
__version__ = '0.4.2'
21-
2220
BLINK_URL = 'immedia-semi.com'
2321
LOGIN_URL = 'https://prod.' + BLINK_URL + '/login'
2422
BASE_URL = 'https://prod.' + BLINK_URL

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
# -*- coding: utf-8 -*-
22

3-
from blinkpy import __version__
43
from setuptools import setup
54

65
setup(
76
name = 'blinkpy',
8-
version = __version__,
7+
version = '0.4.',
98
description = 'A Blink camera Python library',
109
long_description='A library that communicates with Blink cameras',
1110
author = 'Kevin Fronczak',
1211
author_email = "kfronczak@gmail.com",
1312
license='MIT',
1413
url = 'https://github.com/fronzbot/blinkpy',
1514
py_modules=['blinkpy'],
16-
install_requires=['requests'],
15+
install_requires=['requests>=2,<3'],
1716
classifiers=[
1817
'Development Status :: 4 - Beta',
1918
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)