From 8ba7fafb9e2f735076732010a5306a073a184002 Mon Sep 17 00:00:00 2001 From: Andrew Nepogoda Date: Thu, 28 Sep 2023 23:06:16 +0200 Subject: [PATCH] Update setup.py (#28) --- cli/README.md | 2 +- setup.py | 3 ++- workflow/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/cli/README.md b/cli/README.md index 64ce461..8b1a9d8 100644 --- a/cli/README.md +++ b/cli/README.md @@ -6,7 +6,7 @@ This Command-Line Interface (CLI) is designed to provide an easy and interactive 1. Create a batch configuration (ex. `poc.json`) file using the syntax and structure outlined in the [RAI Workflow Framework README](../workflow/README.md). 2. Add `rai-workflow-manager` as dependency to your `requirements.txt` file: ```txt -rai-workflow-manager==0.0.15 +rai-workflow-manager==0.0.16 ``` 3. Build the project: ```bash diff --git a/setup.py b/setup.py index 472d9df..bc79e10 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,8 @@ "requests-toolbelt==1.0.0", "more-itertools==10.1.0", "urllib3==1.26.6", - "azure-storage-blob==12.17.0"], + "azure-storage-blob==12.17.0", + "snowflake-connector-python==3.2.0"], license="http://www.apache.org/licenses/LICENSE-2.0", long_description="The RAI Workflow Framework, which allows you to execute batch configurations, along with a " "default Command-Line Interface (CLI) implementation to interact with the RAI Workflow " diff --git a/workflow/__init__.py b/workflow/__init__.py index ce8ee01..71919d8 100644 --- a/workflow/__init__.py +++ b/workflow/__init__.py @@ -12,5 +12,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version_info__ = (0, 0, 15) +__version_info__ = (0, 0, 16) __version__ = ".".join(map(str, __version_info__))