Skip to content

Commit f6ac7bc

Browse files
update SDK version (#37)
* update SDK version * update requirements
1 parent 100d48d commit f6ac7bc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

cli/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This Command-Line Interface (CLI) is designed to provide an easy and interactive
66
1. Create a batch configuration (ex. `poc.json`) file using the syntax and structure outlined in the [RAI Workflow Framework README](../workflow/README.md).
77
2. Add `rai-workflow-manager` as dependency to your `requirements.txt` file:
88
```txt
9-
rai-workflow-manager==0.0.21
9+
rai-workflow-manager==0.0.22
1010
```
1111
3. Build the project:
1212
```bash

requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
tomli==2.0.1
22
ed25519==1.5
3-
protobuf==3.20.2
4-
pyarrow==6.0.1
5-
rai-sdk==0.6.16
3+
protobuf==3.20.3
4+
pyarrow==10.0.1
5+
rai-sdk==0.6.17
66
requests==2.31.0
77
requests-toolbelt==1.0.0
88
urllib3==1.26.6

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
install_requires=[
3232
"tomli==2.0.1",
3333
"ed25519==1.5",
34-
"rai-sdk==0.6.14",
35-
"protobuf==3.20.2",
36-
"pyarrow==6.0.1",
34+
"rai-sdk==0.6.17",
35+
"protobuf==3.20.3",
36+
"pyarrow==10.0.1",
3737
"requests==2.31.0",
3838
"requests-toolbelt==1.0.0",
3939
"more-itertools==10.1.0",

workflow/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version_info__ = (0, 0, 21)
15+
__version_info__ = (0, 0, 22)
1616
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)