Skip to content

Commit c0eaffc

Browse files
Version bump to 1.2.1 and setup.py import fix, to prevent 'Unknown distribution option: install_requires'
1 parent 7a5ca0d commit c0eaffc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
from distutils.core import setup
1+
try:
2+
from setuptools import setup
3+
except ImportError:
4+
from distutils.core import setup
25
setup(
36
name = 'browserstack-local',
47
packages = ['browserstack'],
5-
version = '1.2.0',
8+
version = '1.2.1',
69
description = 'Python bindings for Browserstack Local',
710
author = 'BrowserStack',
811
author_email = '[email protected]',

0 commit comments

Comments
 (0)