From 1ec5b1e1d8e4b24693e991e5c729b9cb7166df90 Mon Sep 17 00:00:00 2001 From: Neil Dwyer Date: Mon, 12 Feb 2024 13:47:55 -0800 Subject: [PATCH] nltk gh workflow (#158) --- .github/workflows/publish-livekit-plugins-nltk.yml | 12 ++++++++++++ livekit-plugins/livekit-plugins-nltk/setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/publish-livekit-plugins-nltk.yml diff --git a/.github/workflows/publish-livekit-plugins-nltk.yml b/.github/workflows/publish-livekit-plugins-nltk.yml new file mode 100644 index 000000000..99566f00e --- /dev/null +++ b/.github/workflows/publish-livekit-plugins-nltk.yml @@ -0,0 +1,12 @@ +name: Publish livekit-plugins-nltk + +on: + workflow_dispatch + +jobs: + call-publish-workflow: + uses: ./.github/workflows/publish-package.yml + with: + package_name: 'livekit-plugins/livekit-plugins-nltk' + package_module: 'livekit.plugins.nltk' + secrets: inherit diff --git a/livekit-plugins/livekit-plugins-nltk/setup.py b/livekit-plugins/livekit-plugins-nltk/setup.py index d175da603..b05d1029a 100644 --- a/livekit-plugins/livekit-plugins-nltk/setup.py +++ b/livekit-plugins/livekit-plugins-nltk/setup.py @@ -47,7 +47,7 @@ license="Apache-2.0", packages=setuptools.find_namespace_packages(include=["livekit.*"]), python_requires=">=3.9.0", - install_requires=["livekit ~= 0.7.1", "nltk >= 3, < 4"], + install_requires=["livekit > 0.8.0", "nltk >= 3, < 4"], project_urls={ "Documentation": "https://docs.livekit.io", "Website": "https://livekit.io/",