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 16, 2025
1 parent 6064d3b commit 0bf316a
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 @@ -39,14 +39,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 All @@ -63,14 +55,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 @@ -39,14 +39,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 All @@ -63,14 +55,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/PorcupineDemo/PorcupineDemo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\binding\dotnet\Porcupine\Porcupine.csproj" />
<PackageReference Include="PvRecorder" Version="1.2.6" />
<PackageReference Include="Porcupine" Version="3.0.5" />
<PackageReference Include="PvRecorder" Version="1.2.9" />
</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-1362/'
}
}

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/porcupine-node": "../../binding/nodejs",
"@picovoice/pvrecorder-node": "~1.2.2",
"@picovoice/porcupine-node": "~3.0.5",
"@picovoice/pvrecorder-node": "~1.2.5",
"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/pvporcupine-3.0.4-py3-none-any.whl
pvrecorder==1.2.2
pvporcupine==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/porcupine",
packages=["pvporcupinedemo"],
install_requires=["pvporcupine==3.0.4", "pvrecorder==1.2.2"],
install_requires=["pvporcupine==3.0.4", "pvrecorder==1.2.4"],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 0bf316a

Please sign in to comment.