Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

Commit 2a8d60d

Browse files
authored
[RELEASE] 2.0.0-preview.6 (#107)
* Incremented version number * Added a Py2 compatibility fix to setup.py
1 parent 31beab9 commit 2a8d60d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

azure-iot-device/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# --------------------------------------------------------------------------
66

77
from setuptools import setup, find_packages
8+
from io import open # io.open needed for Python 2 compat
89

910
# azure v0.x is not compatible with this package
1011
# azure v0.x used to have a __version__ attribute (newer versions don't)
@@ -29,7 +30,7 @@
2930

3031
setup(
3132
name="azure-iot-device",
32-
version="2.0.0-preview.5",
33+
version="2.0.0-preview.6",
3334
description="Microsoft Azure IoT Device Library",
3435
license="MIT License",
3536
url="https://github.com/Azure/azure-iot-sdk-python-preview",

azure-iot-nspkg/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import sys
88
from setuptools import setup
9+
from io import open # io.open needed for Python 2 compat
910

1011
# azure v0.x is not compatible with this package
1112
# azure v0.x used to have a __version__ attribute (newer versions don't)

0 commit comments

Comments
 (0)