diff --git a/.github/workflows/e2e_tests.yaml b/.github/workflows/e2e_tests.yaml index 269f524..035919f 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 e53110b..07b163e 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 49f8639..72579b8 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 124d10e..b1e5149 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 f2c7cb7..82c6c79 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 9e9bbdc..a645895 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`.