diff --git a/.github/workflows/nodejs-demos.yml b/.github/workflows/nodejs-demos.yml index fc92ad7b5..c26237640 100644 --- a/.github/workflows/nodejs-demos.yml +++ b/.github/workflows/nodejs-demos.yml @@ -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 @@ -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 diff --git a/.github/workflows/python-demos.yml b/.github/workflows/python-demos.yml index 963d4741e..9b8fd1fd5 100644 --- a/.github/workflows/python-demos.yml +++ b/.github/workflows/python-demos.yml @@ -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 @@ -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 diff --git a/demo/dotnet/PorcupineDemo/PorcupineDemo.csproj b/demo/dotnet/PorcupineDemo/PorcupineDemo.csproj index 592933413..76a87a250 100644 --- a/demo/dotnet/PorcupineDemo/PorcupineDemo.csproj +++ b/demo/dotnet/PorcupineDemo/PorcupineDemo.csproj @@ -19,7 +19,7 @@ - - + + diff --git a/demo/java/build.gradle b/demo/java/build.gradle index 99bc1b9dd..ccb36b1a8 100644 --- a/demo/java/build.gradle +++ b/demo/java/build.gradle @@ -4,9 +4,6 @@ plugins { repositories { mavenCentral() - maven { - url 'https://s01.oss.sonatype.org/content/repositories/aipicovoice-1362/' - } } sourceSets { diff --git a/demo/nodejs/package.json b/demo/nodejs/package.json index d62042e7c..7773a89ed 100644 --- a/demo/nodejs/package.json +++ b/demo/nodejs/package.json @@ -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" }, diff --git a/demo/python/requirements.txt b/demo/python/requirements.txt index 6c82edac0..03b67b4f0 100644 --- a/demo/python/requirements.txt +++ b/demo/python/requirements.txt @@ -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 diff --git a/demo/python/setup.py b/demo/python/setup.py index 25a7d1231..790c034d3 100644 --- a/demo/python/setup.py +++ b/demo/python/setup.py @@ -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",