Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Aug 26, 2024
1 parent 96b8d46 commit 631606b
Show file tree
Hide file tree
Showing 7 changed files with 727 additions and 748 deletions.
18 changes: 10 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +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: "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_VERSION: "3.9"
PYTHON_PACKAGE_NAME: "jupyterlab_display_name"

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.3"
PACKAGE_NAME: "jupyterlab-display-name"
PYTHON_PACKAGE_NAME: "jupyterlab_display_name"
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"scripts": {
"build": "jupyter labextension build ."
},
"packageManager": "yarn@3.5.0",
"packageManager": "yarn@4.4.1",
"dependencies": {
"@jupyterlab/builder": "^4.0.10"
"@jupyterlab/builder": "^4.2.4"
}
}
16 changes: 8 additions & 8 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.4,<5"]
build-backend = "hatchling.build"

[project]
Expand All @@ -22,7 +22,7 @@ classifiers = [
]
requires-python = ">=3.9"
dynamic = ["version", "description", "authors", "urls", "keywords"]
dependencies = ["jupyter_server>=2.12.1,<3", "tornado>=6.4,<7"]
dependencies = ["jupyter_server>=2.14.2,<3", "tornado>=6.4.1,<7"]

[tool.hatch.version]
source = "nodejs"
Expand All @@ -42,7 +42,7 @@ packages = ["jupyterlab_display_name"]
"install.json" = "share/jupyter/labextensions/jupyterlab-display-name/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 @@ -53,15 +53,15 @@ 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.4,<5", "jupyter-collaboration>=2.1.2,<3"]

[tool.hatch.envs.lint]
description = "For linting and type checking Python"
dependencies = [
"flake8>=6.1.0,<7",
"pylint>=3.0.3,<4",
"mypy>=1.8.0,<2",
"black>=23.12.1,<24",
"flake8>=7.1.1,<8",
"pylint>=3.2.6,<4",
"mypy>=1.11.2,<2",
"black>=24.8.0,<25",
]

[tool.mypy]
Expand Down
Loading

0 comments on commit 631606b

Please sign in to comment.