[ie/youtube] Drop support for deno<2.3.0 (#16788)

Closes #16767
Authored by: bashonly
This commit is contained in:
bashonly 2026-05-24 17:49:00 -05:00 committed by GitHub
parent 125bb40468
commit e534a32619
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ jobs:
- name: Install Deno - name: Install Deno
uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4 uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4
with: with:
deno-version: '2.0.0' # minimum supported version deno-version: '2.3.0' # minimum supported version
- name: Install Bun - name: Install Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0 uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with: with:

View File

@ -87,7 +87,7 @@ class JsRuntime(abc.ABC):
class DenoJsRuntime(JsRuntime): class DenoJsRuntime(JsRuntime):
MIN_SUPPORTED_VERSION = (2, 0, 0) MIN_SUPPORTED_VERSION = (2, 3, 0)
def _info(self): def _info(self):
path = _determine_runtime_path(self._path, 'deno') path = _determine_runtime_path(self._path, 'deno')