Skip to content

Commit

Permalink
Update setup.py (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewNepogoda authored Sep 28, 2023
1 parent 3aa955e commit 8ba7faf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 "
Expand Down
2 changes: 1 addition & 1 deletion workflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))

0 comments on commit 8ba7faf

Please sign in to comment.