Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Aug 29, 2024
1 parent 264246a commit c9c0638
Show file tree
Hide file tree
Showing 7 changed files with 1,396 additions and 1,487 deletions.
15 changes: 3 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,23 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "05:00"
timezone: "America/Los_Angeles"
interval: "monthly"
groups:
github-actions:
patterns: ["*"]

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "04:00"
timezone: "America/Los_Angeles"
interval: "monthly"
groups:
python:
update-types: ["minor", "patch"]

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "04:00"
timezone: "America/Los_Angeles"
interval: "monthly"
groups:
javascript:
update-types: ["minor", "patch"]
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main

env:
HATCH_VERSION: "1.9.1"
HATCH_VERSION: "1.12.0"
PYTHON_PACKAGE_NAME: "jupyterlab_open_warning"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy to GitHub Pages
on: workflow_dispatch

env:
HATCH_VERSION: "1.9.1"
HATCH_VERSION: "1.12.0"
PACKAGE_VERSION: "0.1.1"
PACKAGE_NAME: "jupyterlab-open-warning"
PYTHON_PACKAGE_NAME: "jupyterlab_open_warning"
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.10.0
v20.17.0
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,24 @@
},
"packageManager": "[email protected]",
"dependencies": {
"@jupyter/collaboration": "^2.0.1",
"@jupyterlab/application": "^4.1.0",
"@jupyterlab/apputils": "^4.2.0",
"@jupyterlab/docmanager": "^4.1.0",
"@jupyterlab/services": "^7.1.0",
"@jupyter/collaboration": "^2.1.2",
"@jupyterlab/application": "^4.2.5",
"@jupyterlab/apputils": "^4.3.5",
"@jupyterlab/docmanager": "^4.2.5",
"@jupyterlab/services": "^7.2.5",
"y-protocols": "^1.0.6"
},
"devDependencies": {
"@jupyterlab/builder": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@jupyterlab/builder": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
}
}
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling", "hatch-nodejs-version", "jupyterlab>=4.0.10,<5"]
requires = ["hatchling", "hatch-nodejs-version", "jupyterlab>=4.2.5,<5"]
build-backend = "hatchling.build"

[project]
Expand All @@ -24,7 +24,7 @@ requires-python = ">=3.9"
dynamic = ["version", "description", "authors", "urls", "keywords"]

[project.optional-dependencies]
rtc = ["jupyter-collaboration>=2.0.1,<2"]
rtc = ["jupyter-collaboration>=2.1.2,<2"]

[tool.hatch.version]
source = "nodejs"
Expand All @@ -40,7 +40,7 @@ artifacts = ["labextension"]
"install.json" = "share/jupyter/labextensions/jupyterlab-open-warning/install.json"

[tool.hatch.build.hooks.jupyter-builder]
dependencies = ["hatch-jupyter-builder>=0.8.3"]
dependencies = ["hatch-jupyter-builder>=0.9.1"]
build-function = "hatch_jupyter_builder.npm_builder"
ensured-targets = ["labextension/package.json"]
skip-if-exists = ["labextension/package.json"]
Expand All @@ -51,7 +51,7 @@ npm = ["jlpm"]

[tool.hatch.envs.default]
description = "For running JupyterLab in development"
dependencies = ["jupyterlab>=4.0.10,<5", "jupyter-collaboration>=2.0.1,<3"]
dependencies = ["jupyterlab>=4.2.5,<5", "jupyter-collaboration>=2.1.2,<3"]

[tool.hatch.envs.default.scripts]
dev = "jlpm dev"
Expand All @@ -62,4 +62,4 @@ lint = "jlpm lint"
[tool.hatch.envs.ci]
description = "For running jlpm in CI without building and installing this package"
detached = true
dependencies = ["jupyterlab>=4.0.10,<5"]
dependencies = ["jupyterlab>=4.2.5,<5"]
Loading

0 comments on commit c9c0638

Please sign in to comment.