From 8f403ab43d84ca5fce35cbf42af29e6ed284bb4f Mon Sep 17 00:00:00 2001 From: klemen1999 Date: Thu, 6 Mar 2025 14:41:14 +0100 Subject: [PATCH] Release v0.2.0 --- .github/workflows/e2e_tests.yaml | 4 ++-- .github/workflows/integration_tests.yaml | 4 ++-- README.md | 2 +- depthai_nodes/__init__.py | 2 +- tests/end_to_end/README.md | 2 +- tests/integration_tests/README.md | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/e2e_tests.yaml b/.github/workflows/e2e_tests.yaml index 269f524a..035919f8 100644 --- a/.github/workflows/e2e_tests.yaml +++ b/.github/workflows/e2e_tests.yaml @@ -12,9 +12,9 @@ on: required: true default: 'main' depthai-version: - description: 'Version of depthai to install. Default: alpha11' + description: 'Version of depthai to install. Default: alpha13' required: true - default: '3.0.0a11' + default: '3.0.0a13' push: branches: - main diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index e53110bb..07b163e6 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -12,9 +12,9 @@ on: required: true default: 'main' depthai-version: - description: 'Version of depthai to install. Default: alpha11' + description: 'Version of depthai to install. Default: alpha13' required: true - default: '3.0.0a11' + default: '3.0.0a13' pull_request: branches: - main diff --git a/README.md b/README.md index 49f86392..72579b82 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The `depthai_nodes` package requires Python 3.8 or later and `depthai v3` instal While the `depthai v3` is not yet released on PyPI, you can install it with the following command: ```bash -pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-release-local/ depthai==3.0.0a12 +pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-release-local/ depthai==3.0.0a13 ``` The `depthai_nodes` package is hosted on PyPI, so you can install it with `pip`. diff --git a/depthai_nodes/__init__.py b/depthai_nodes/__init__.py index 124d10e2..b1e51494 100644 --- a/depthai_nodes/__init__.py +++ b/depthai_nodes/__init__.py @@ -2,7 +2,7 @@ from .logging import setup_logging from .message import * -__version__ = "0.1.2" +__version__ = "0.2.0" setup_logging() diff --git a/tests/end_to_end/README.md b/tests/end_to_end/README.md index f2c7cb7e..82c6c798 100644 --- a/tests/end_to_end/README.md +++ b/tests/end_to_end/README.md @@ -14,7 +14,7 @@ There are 4 required parameters that need to be set when triggering the Github a - `additional-parameter`: The parameter that specifies the desired test. Default is `-all` which runs tests on all public models. The available options are: `-all`, `-p `, `-m ...`. - `branch`: The branch on which the tests will be run. Default is `main`. - `testbed`: The testbed on which the tests will be run. Default is `oak4-pro`. Available: `oak4-pro`, `oak4-s`. -- `depthai-version`: The version of the DepthAI that will be used for the tests. Default is `3.0.0a6`. +- `depthai-version`: The version of the DepthAI that will be used for the tests. Default is `3.0.0a13`. ## Running the tests locally diff --git a/tests/integration_tests/README.md b/tests/integration_tests/README.md index 9e9bbdca..a6458952 100644 --- a/tests/integration_tests/README.md +++ b/tests/integration_tests/README.md @@ -71,4 +71,4 @@ The integration tests are triggered in every PR. But you can also trigger them m - `additional-parameter`: The parameter that specifies the desired test. Default is `-all` which runs tests on all parsers. The available options are: `-all`, `-p `. - `branch`: The branch on which the tests will be run. Default is `main`. - `testbed`: The testbed on which the tests will be run. Default is `oak4-s`. Available: `oak4-pro`, `oak4-s`. -- `depthai-version`: The version of the DepthAI that will be used for the tests. Default is `3.0.0a6`. +- `depthai-version`: The version of the DepthAI that will be used for the tests. Default is `3.0.0a13`.