diff --git a/panel/package-lock.json b/panel/package-lock.json index 63d6921424..b5c10a7549 100644 --- a/panel/package-lock.json +++ b/panel/package-lock.json @@ -9,7 +9,7 @@ "version": "1.5.0-a.8", "license": "BSD-3-Clause", "dependencies": { - "@bokeh/bokehjs": "3.5.0-rc.1", + "@bokeh/bokehjs": "3.5.0", "@types/debounce": "^1.2.0", "@types/gl-matrix": "^2.4.5", "ace-code": "^1.24.1", @@ -41,9 +41,9 @@ } }, "node_modules/@bokeh/bokehjs": { - "version": "3.5.0-rc.1", - "resolved": "https://registry.npmjs.org/@bokeh/bokehjs/-/bokehjs-3.5.0-rc.1.tgz", - "integrity": "sha512-WOUBY6ILHRUESxB24BpYqvaHym73CaqWRNskzWwb1p9QgnLwtJwhL7ibtREg/fuO+ifTpfCDoKSHaP3jmbflyQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/@bokeh/bokehjs/-/bokehjs-3.5.0.tgz", + "integrity": "sha512-9BdydcclXPmEIq8C12+d44HZZgxLooseugdHi/uo0Rd7Xgmvqs3SfjjtgpHKYCfzcI20v0XgjdMhjiwmq068hw==", "workspaces": [ "./make", "./src/compiler", diff --git a/panel/package.json b/panel/package.json index 4b33492c81..77de655862 100644 --- a/panel/package.json +++ b/panel/package.json @@ -8,7 +8,7 @@ "url": "https://github.com/holoviz/panel.git" }, "dependencies": { - "@bokeh/bokehjs": "3.5.0-rc.1", + "@bokeh/bokehjs": "3.5.0", "@types/debounce": "^1.2.0", "@types/gl-matrix": "^2.4.5", "ace-code": "^1.24.1", diff --git a/pixi.toml b/pixi.toml index 0f1eaea10e..0e730c8b52 100644 --- a/pixi.toml +++ b/pixi.toml @@ -22,12 +22,13 @@ lint = ["py311", "lint"] [dependencies] bleach = "*" -bokeh = "==3.5.0rc1" +bokeh = ">=3.5.0,<3.6.0" linkify-it-py = "*" markdown = "*" markdown-it-py = "*" mdit-py-plugins = "*" nodejs = "*" +numpy = "<2.0" # Temporary pin until panel release with support for bokeh 3.5.0 is available packaging = "*" pandas = ">=1.2" param = ">=2.1.0,<3.0" diff --git a/pyproject.toml b/pyproject.toml index 1f6d76c395..b2f3f050cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "hatchling", "hatch-vcs", "param >=2.1.0", - "bokeh ==3.5.0rc1", + "bokeh >=3.5.0,<3.6.0", "pyviz_comms >=0.7.4", "requests", "packaging", @@ -47,7 +47,7 @@ classifiers = [ ] dependencies = [ - 'bokeh ==3.5.0rc1', + 'bokeh >=3.5.0,<3.6.0', 'param >=2.1.0,<3.0', 'pyviz_comms >=2.0.0', 'markdown',