From ae7025e52746a586d710e22bdcf54cc78fb54068 Mon Sep 17 00:00:00 2001 From: Mariana Mihova Date: Mon, 7 Feb 2022 15:26:04 -0800 Subject: [PATCH] Update to rc2 --- README.md | 2 +- iotedgehubdev/__init__.py | 2 +- setup.py | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6e8e967..9470e71 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The following table compares the requirements to run your solution on the IoT Ed [Windows](https://docs.docker.com/docker-for-windows/install/), [macOS](https://docs.docker.com/docker-for-mac/install/) or [Linux](https://docs.docker.com/install/linux/docker-ce/ubuntu/#install-docker-ce) 2. Install [Docker Compose (1.20.0+)](https://docs.docker.com/compose/install/#install-compose) (***Linux only***. *Compose has already been included in Windows/macOS Docker CE installation*) -3. Install [Python (3.5/3.6/3.7/3.8/3.9/3.10) and Pip](https://www.python.org/) +3. Install [Python (3.5/3.6/3.7/3.8/3.9) and Pip](https://www.python.org/) 4. Install **iotedgehubdev** by running the following command in your terminal: ``` pip install --upgrade iotedgehubdev diff --git a/iotedgehubdev/__init__.py b/iotedgehubdev/__init__.py index fe18bdb..9b138ed 100644 --- a/iotedgehubdev/__init__.py +++ b/iotedgehubdev/__init__.py @@ -7,6 +7,6 @@ pkg_resources.declare_namespace(__name__) __author__ = 'Microsoft Corporation' -__version__ = '0.14.11-rc1' +__version__ = '0.14.11-rc2' __AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe' __production__ = 'iotedgehubdev' diff --git a/setup.py b/setup.py index 3b68b4f..8c09c9c 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ """ from setuptools import find_packages, setup -VERSION = '0.14.11-rc1' +VERSION = '0.14.11-rc2' # If we have source, validate that our version numbers match # This should prevent uploading releases with mismatched versions. try: @@ -80,7 +80,6 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10', 'Topic :: Software Development :: Libraries :: Python Modules', ]