Skip to content

Commit

Permalink
Merge pull request #75 from i3drobotics/upgrade-to-phasev0.3.0
Browse files Browse the repository at this point in the history
changed workflow to phasev0.3.0
  • Loading branch information
kinyipchan913 authored Sep 20, 2022
2 parents f5c3260 + bd5f14e commit b12f966
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:

env:
PHASE_VERSION: v0.2.1-3
PHASE_VERSION: v0.3.0
PHASE_REPO: i3drobotics/phase

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
types: [ opened, synchronize, reopened ]

env:
PHASE_VERSION: v0.2.1-3
PHASE_VERSION: v0.3.0
PHASE_REPO: i3drobotics/phase

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- prerelease

env:
PHASE_VERSION: v0.2.1-3
PHASE_VERSION: v0.3.0
PHASE_REPO: i3drobotics/phase

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM gitpod/workspace-full

RUN curl --output phase.deb -L https://github.com/i3drobotics/phase/releases/download/v0.2.1-3/phase-v0.2.1-3-ubuntu-20.04-x86_64.deb && \
RUN curl --output phase.deb -L https://github.com/i3drobotics/phase/releases/download/v0.3.0/phase-v0.3.0-ubuntu-20.04-x86_64.deb && \
sudo apt update && \
sudo apt install -y ./phase.deb && \
sudo rm -rf ./phase.deb && \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ pip install ./phase-X.X.X-cpXXX-cpXXX-linux_x86_64.whl
## Dependencies
Phase library is required to be installed for use in the build process.
### Linux
Download debian package from [v0.2.1-3 release](https://github.com/i3drobotics/phase/releases/tag/v0.2.1-3).
Download debian package from [v0.3.0 release](https://github.com/i3drobotics/phase/releases/tag/v0.3.0).
Install debian package using apt package manager:
```
sudo apt install -f ./phase_vx.x.x-amd64.deb
```
This should install to `/opt/i3dr/phase`
### Windows
Download Windows installer from the [v0.2.1-3 release](https://github.com/i3drobotics/phase/releases/tag/v0.2.1-3).
Download Windows installer from the [v0.3.0 release](https://github.com/i3drobotics/phase/releases/tag/v0.3.0).
Install using the installer GUI, this should install to `C:\Program Files\i3DR\Phase`

The following libraries are used to build pyPhase:
Expand Down
4 changes: 2 additions & 2 deletions docs/README_developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ pip install ./phase-X.X.X-cpXXX-cpXXX-linux_x86_64.whl
## Dependencies
Phase library is required to be installed for use in the build process.
### Linux
Download debian package from [v0.2.1-3 release](https://github.com/i3drobotics/phase/releases/tag/v0.2.1-3).
Download debian package from [v0.3.0 release](https://github.com/i3drobotics/phase/releases/tag/v0.3.0).
Install debian package using apt package manager:
```
sudo apt install -f ./phase_vx.x.x-amd64.deb
```
This should install to `/opt/i3dr/phase`
### Windows
Download Windows installer from the [v0.2.1-3 release](https://github.com/i3drobotics/phase/releases/tag/v0.2.1-3).
Download Windows installer from the [v0.3.0 release](https://github.com/i3drobotics/phase/releases/tag/v0.3.0).
Install using the installer GUI, this should install to `C:\Program Files\i3DR\Phase`

The following libraries are used to build pyPhase:
Expand Down
2 changes: 1 addition & 1 deletion release.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Documentation is available [here](https://i3drobotics.github.io/pyphase/)
### Improvements
- Changed the suggested way to import pyPhase [#63](https://github.com/i3drobotics/pyphase/pull/63)
- Added ability to list available cameras using `phase.stereocamera.availableDevices` [#67](https://github.com/i3drobotics/pyphase/pull/67)
- Updated to phase version v0.2.1-3 [#70](https://github.com/i3drobotics/pyphase/pull/70)
- Updated to phase version v0.3.0 [#70](https://github.com/i3drobotics/pyphase/pull/70)

### Bug fixes
- Fix docstrings missing parameter names [#66](https://github.com/i3drobotics/pyphase/pull/66)
Expand Down
2 changes: 1 addition & 1 deletion src/package/phase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def check_phase_version(phase_version):


# Define phase version
phase_version = "0.2.1"
phase_version = "0.3.0"

# Check valid phase import
import_phase()
Expand Down

0 comments on commit b12f966

Please sign in to comment.