Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update anomaly detection app dependencies #672

Merged
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 <[email protected]>", "<[email protected]>"]
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 && \
johnsonshih marked this conversation as resolved.
Show resolved Hide resolved
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 = ["<[email protected]>", "<[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
edition = "2018"
Expand Down
5 changes: 2 additions & 3 deletions samples/apps/anomaly-detection-app/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
grpcio==1.53.0
grpcio-tools==1.53.0
Flask==2.2.5
numpy==1.21.4
protobuf==4.21.6
scikit_learn==1.0.1
johnsonshih marked this conversation as resolved.
Show resolved Hide resolved
numpy
protobuf==4.21.6
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 <[email protected]>", "<[email protected]>"]
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 = ["<[email protected]>"]
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 <[email protected]>"]
edition = "2018"
Expand Down