Skip to content

Commit

Permalink
update anomaly detection app dependencies (#672)
Browse files Browse the repository at this point in the history
* update anomaly detection app dependencies

Signed-off-by: Johnson Shih <jshih@microsoft.com>

* update patch version

Signed-off-by: Johnson Shih <jshih@microsoft.com>

* update node version

Signed-off-by: Johnson Shih <jshih@microsoft.com>

* add scikit-learn to requirements

Signed-off-by: Johnson Shih <jshih@microsoft.com>

---------

Signed-off-by: Johnson Shih <jshih@microsoft.com>
  • Loading branch information
johnsonshih authored Oct 19, 2023
1 parent cc29959 commit 172eb2b
Show file tree
Hide file tree
Showing 23 changed files with 42 additions and 42 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-anomaly-detection-app-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Prepare To Install
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
- name: Install Deps
run: |
yarn install
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Prepare To Install
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
- name: Install Deps
run: |
yarn install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-onvif-video-broker-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Prepare To Install
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
- name: Install Deps
run: |
yarn install
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Prepare To Install
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
- name: Install Deps
run: |
yarn install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-opcua-monitoring-broker-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Prepare To Install
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
- name: Install Deps
run: |
yarn install
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Prepare To Install
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
- name: Install Deps
run: |
yarn install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-video-streaming-app-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Prepare To Install
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
- name: Install Deps
run: |
yarn install
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Prepare To Install
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18
- name: Install Deps
run: |
yarn install
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>", "<bfjelds@microsoft.com>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion build/containers/Dockerfile.anomaly-detection-app
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY ./samples/apps/anomaly-detection-app .

RUN echo "Creating container based on ${PLATFORM}/debian:bullseye-slim" && \
apt-get update && \
apt-get install -y protobuf-compiler libprotoc-dev python3-pip && \
apt-get install -y protobuf-compiler libprotoc-dev python3-pip python3-sklearn && \
apt-get clean && \
pip3 install -r ./requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "controller"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["<bfjelds@microsoft.com>", "<kagold@microsoft.com>"]
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions deployment/helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.12.12
version: 0.12.13

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.12.12
appVersion: 0.12.13
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "debug-echo-discovery-handler"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>"]
edition = "2018"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "onvif-discovery-handler"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>"]
edition = "2018"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-discovery-handler"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>"]
edition = "2018"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "udev-discovery-handler"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion discovery-handlers/debug-echo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akri-debug-echo"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion discovery-handlers/onvif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akri-onvif"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion discovery-handlers/opcua/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akri-opcua"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion discovery-handlers/udev/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akri-udev"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion discovery-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akri-discovery-utils"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>"]
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions samples/apps/anomaly-detection-app/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
grpcio==1.53.0
grpcio-tools==1.53.0
Flask==2.2.5
numpy==1.21.4
numpy
protobuf==4.21.6
scikit_learn==1.0.1
scikit_learn
2 changes: 1 addition & 1 deletion samples/brokers/udev-video-broker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "udev-video-broker"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["Kate Goldenring <kate.goldenring@microsoft.com>", "<bfjelds@microsoft.com>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akri-shared"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["<bfjelds@microsoft.com>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.12
0.12.13
2 changes: 1 addition & 1 deletion webhooks/validating/configuration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webhook-configuration"
version = "0.12.12"
version = "0.12.13"
license = "Apache-2.0"
authors = ["DazWilkin <daz.wilkin@gmail.com>"]
edition = "2018"
Expand Down

0 comments on commit 172eb2b

Please sign in to comment.