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

Release v0.2.0 #183

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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/e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion depthai_nodes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .logging import setup_logging
from .message import *

__version__ = "0.1.2"
__version__ = "0.2.0"


setup_logging()
2 changes: 1 addition & 1 deletion tests/end_to_end/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <parser_name>`, `-m <model_1> <model_2> ...`.
- `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

Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <parser_name>`.
- `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`.
Loading