We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For now we manually update this repo to bump the version of jupyterlite when there is a new release. For example: #43
jupyterlite
It would be great if this could be automated instead.
Probably just parsing and writing to requirements.txt should be enough for now.
requirements.txt
JupyterLab Desktop has a workflow to do that with JupyterLab releases: https://github.com/jupyterlab/jupyterlab-desktop/blob/master/.github/workflows/sync_lab_release.yml
The text was updated successfully, but these errors were encountered:
Or maybe there is a way to use the dependabot.yml workflow directly: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
dependabot.yml
Sorry, something went wrong.
An example of a dependabot.yml that would bump the dependencies automatically:
version: 2 updates: - package-ecosystem: "pip" directory: "/" schedule: interval: "daily" groups: actions: patterns: - "*"
Successfully merging a pull request may close this issue.
Problem
For now we manually update this repo to bump the version of
jupyterlite
when there is a new release. For example: #43It would be great if this could be automated instead.
Proposed Solution
Probably just parsing and writing to
requirements.txt
should be enough for now.Additional context
JupyterLab Desktop has a workflow to do that with JupyterLab releases: https://github.com/jupyterlab/jupyterlab-desktop/blob/master/.github/workflows/sync_lab_release.yml
The text was updated successfully, but these errors were encountered: