Skip to content

Commit

Permalink
published bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
matt200-ok committed Jan 15, 2025
1 parent 1a7360b commit bf9a49f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 42 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/nodejs-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

# ************ REMOVE AFTER RELEASE ***************
- name: build local binding
run: |
yarn install
yarn build
working-directory: binding/nodejs
# ************ REMOVE AFTER RELEASE ***************

- name: Install dependencies
run: yarn install

Expand Down Expand Up @@ -83,14 +75,6 @@ jobs:
steps:
- uses: actions/checkout@v3

# ************ REMOVE AFTER RELEASE ***************
- name: build local binding
run: |
yarn install
yarn build
working-directory: binding/nodejs
# ************ REMOVE AFTER RELEASE ***************

- name: Install dependencies
run: yarn install

Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/python-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,6 @@ jobs:
- name: Pre-build dependencies
run: python -m pip install --upgrade pip

# ************ REMOVE AFTER RELEASE ***************
- name: build local binding
run: |
python3 -m pip install setuptools wheel
python3 -m setup sdist bdist_wheel
working-directory: binding/python
# ************ REMOVE AFTER RELEASE ***************

- name: Install dependencies
run: pip install -r requirements.txt

Expand Down Expand Up @@ -83,14 +75,6 @@ jobs:
steps:
- uses: actions/checkout@v3

# ************ REMOVE AFTER RELEASE ***************
- name: build local binding
run: |
python3 -m pip install setuptools wheel
python3 -m setup sdist bdist_wheel
working-directory: binding/python
# ************ REMOVE AFTER RELEASE ***************

- name: Install dependencies
run: pip3 install -r requirements.txt

Expand Down
4 changes: 2 additions & 2 deletions demo/dotnet/RhinoDemo/RhinoDemo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PvRecorder" Version="1.2.6" />
<ProjectReference Include="..\..\..\binding\dotnet\Rhino\Rhino.csproj" />
<PackageReference Include="PvRecorder" Version="1.2.9" />
<PackageReference Include="Rhino" Version="3.0.5" />
</ItemGroup>
</Project>
3 changes: 0 additions & 3 deletions demo/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ plugins {

repositories {
mavenCentral()
maven {
url 'https://s01.oss.sonatype.org/content/repositories/aipicovoice-1363/'
}
}

sourceSets {
Expand Down
4 changes: 2 additions & 2 deletions demo/nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"author": "Picovoice Inc.",
"license": "Apache-2.0",
"dependencies": {
"@picovoice/pvrecorder-node": "~1.2.2",
"@picovoice/rhino-node": "../../binding/nodejs",
"@picovoice/pvrecorder-node": "~1.2.5",
"@picovoice/rhino-node": "~3.0.6",
"commander": "^6.1.0",
"wavefile": "^11.0.0"
},
Expand Down
4 changes: 2 additions & 2 deletions demo/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
../../binding/python/dist/pvrhino-3.0.4-py3-none-any.whl
pvrecorder==1.2.2
pvrhino==3.0.4
pvrecorder==1.2.4
2 changes: 1 addition & 1 deletion demo/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
long_description_content_type="text/markdown",
url="https://github.com/Picovoice/rhino",
packages=["pvrhinodemo"],
install_requires=["pvrhino==3.0.4", "pvrecorder==1.2.2"],
install_requires=["pvrhino==3.0.4", "pvrecorder==1.2.4"],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit bf9a49f

Please sign in to comment.