Skip to content

Commit

Permalink
Release v0.1.0 (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
klemen1999 authored Oct 28, 2024
1 parent ef3f787 commit c13e6b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
cache: pip

- name: Install depthai
run: pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-release-local/ depthai==3.0.0a4
run: pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-release-local/ depthai==3.0.0a5

- name: Install package
run: pip install -e .[dev]
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

![CI](https://github.com/luxonis/depthai-nodes/actions/workflows/ci.yaml/badge.svg)
![CI](https://github.com/luxonis/depthai-nodes/actions/workflows/ci.yaml/badge.svg?event=pull_request)
![Coverage](https://github.com/luxonis/depthai-nodes/blob/dev/media/coverage_badge.svg)

[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
Expand All @@ -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.0a4
pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-release-local/ depthai==3.0.0a5
```

The `depthai_nodes` package is hosted on PyPI, so you can install it with `pip`.
Expand All @@ -52,8 +52,6 @@ pip install .

Note: You'll still need to manually install `depthai v3`.

Note: You'll still need to manually install `depthai v3`.

## Contributing

If you want to contribute to this project, read the instructions in [CONTRIBUTING.md](./CONTRIBUTING.md)
2 changes: 1 addition & 1 deletion depthai_nodes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from .parser_generator import ParserGenerator # noqa: F401
from .parsing_neural_network import ParsingNeuralNetwork # noqa: F401

__version__ = "0.0.2"
__version__ = "0.1.0"

0 comments on commit c13e6b5

Please sign in to comment.