Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Jan 3, 2024
1 parent a6befd1 commit cc0da70
Show file tree
Hide file tree
Showing 7 changed files with 425 additions and 426 deletions.
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.7.0"
HATCH_VERSION: "1.9.1"
PYTHON_PACKAGE_NAME: "jupyterlab_pdf_preview"

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .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.7.0"
HATCH_VERSION: "1.9.1"
PACKAGE_VERSION: "0.1.1"
PACKAGE_NAME: "jupyterlab-pdf-preview"
PYTHON_PACKAGE_NAME: "jupyterlab_pdf_preview"
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
run: mv dist/* _site/releases/${{ env.PACKAGE_NAME }}

- name: Upload site artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3

deploy:
needs: build
Expand All @@ -84,4 +84,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.9.0
v20.10.0
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2023, California Institute of Technology
Copyright (c) 2023–2024, California Institute of Technology

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,26 +35,26 @@
"jupyterlab": "hatch run jupyter lab"
},
"dependencies": {
"@jupyterlab/application": "^4.0.8",
"@jupyterlab/filebrowser": "^4.0.8",
"@jupyterlab/services": "^7.0.8",
"react-pdf": "^7.5.1"
"@jupyterlab/application": "^4.0.10",
"@jupyterlab/filebrowser": "^4.0.10",
"@jupyterlab/services": "^7.0.10",
"react-pdf": "^7.6.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.8",
"@types/react": "^18.2.37",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"@jupyterlab/builder": "^4.0.10",
"@types/react": "^18.2.46",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
"typescript": "^5.3.3"
}
}
6 changes: 3 additions & 3 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.8,<5"]
requires = ["hatchling", "hatch-nodejs-version", "jupyterlab>=4.0.10,<5"]
build-backend = "hatchling.build"

[project]
Expand Down Expand Up @@ -48,7 +48,7 @@ npm = ["jlpm"]

[tool.hatch.envs.default]
description = "For running JupyterLab in development"
dependencies = ["jupyterlab>=4.0.8,<5"]
dependencies = ["jupyterlab>=4.0.10,<5"]

[tool.hatch.envs.default.scripts]
dev = "jlpm dev"
Expand All @@ -59,4 +59,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.8,<5"]
dependencies = ["jupyterlab>=4.0.10,<5"]
Loading

0 comments on commit cc0da70

Please sign in to comment.