From 7ef7125fcd10b835b540f6f66666b464662a7f7d Mon Sep 17 00:00:00 2001 From: Cindy Deng Date: Wed, 20 Oct 2021 16:55:07 -0700 Subject: [PATCH] update pypi docker versions (#510) * update docker version 5.0.0 and docker-compose 1.29.1 * changelog and version change * update release version to 3.3.1 --- CHANGELOG.md | 3 +++ iotedgedev/__init__.py | 2 +- requirements.txt | 4 ++-- requirements_dev.txt | 2 +- setup.cfg | 2 +- setup.py | 4 ++-- tests/__init__.py | 2 +- 7 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a908f29..ebf6fff5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All notable changes to this project since 0.82.0 will be documented in this file. +## [3.3.1] - 2021-10-20 +- Updated Python Docker package versions to newest version and enable simulator dependencies + ## [3.3.0] - 2021-8-24 - Add support for layered deployment manifests when building, pushing and generating - Add support for creating deployments in IoTHub via the new command: `iotedgedev iothub deploy` diff --git a/iotedgedev/__init__.py b/iotedgedev/__init__.py index c87b8e2c..90e84ffe 100644 --- a/iotedgedev/__init__.py +++ b/iotedgedev/__init__.py @@ -2,5 +2,5 @@ __author__ = 'Microsoft Corporation' __email__ = 'opencode@microsoft.com' -__version__ = '3.3.0' +__version__ = '3.3.1' __AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe' \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 2b86af51..c9dee3c8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ click==8.0.1 -docker==4.4.1 +docker==5.0.0 python-dotenv==0.19.0 requests==2.25.1 fstrings==0.1.0 msrestazure==0.4.34 -iotedgehubdev==0.14.9 +iotedgehubdev>=0.14.9 applicationinsights==0.11.9 commentjson==0.9.0 pypiwin32==219; sys_platform == 'win32' and python_version < '3.6' diff --git a/requirements_dev.txt b/requirements_dev.txt index 8facfc50..d95b99e9 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -3,7 +3,7 @@ pip==21.2.3 bumpversion==0.5.3 wheel==0.30.0 watchdog==0.8.3 -docker-compose==1.28.3 +docker-compose==1.29.1 flake8==3.9.2 pycodestyle==2.7.0 autopep8==1.5.7 diff --git a/setup.cfg b/setup.cfg index eac2c520..23285d4d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.3.0 +current_version = 3.3.1 commit = True tag = True diff --git a/setup.py b/setup.py index ae91f1a6..ab507cd7 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ requirements = [ 'click>=6.0', 'bcrypt<=3.1.7', - 'docker >= 3.7.0, <= 4.4.1', + 'docker >= 3.7.0', 'python-dotenv', 'requests >= 2.20.0, <= 2.25.1', 'fstrings', @@ -31,7 +31,7 @@ setup( name='iotedgedev', - version='3.3.0', + version='3.3.1', description='The Azure IoT Edge Dev Tool greatly simplifies the IoT Edge development process by automating many routine manual tasks, such as building, deploying, pushing modules and configuring the IoT Edge Runtime.', long_description='See https://github.com/azure/iotedgedev for usage instructions.', author='Microsoft Corporation', diff --git a/tests/__init__.py b/tests/__init__.py index cc825f54..857cd4bf 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -2,4 +2,4 @@ __author__ = 'Microsoft Corporation' __email__ = 'opencode@microsoft.com' -__version__ = '3.3.0' +__version__ = '3.3.1'