Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

CI Cleanup#6631

New issue

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
jtpio merged 11 commits intojupyter:mainfromblink1073:ci-cleanup
Nov 21, 2022
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
fixes
  • Loading branch information
@blink1073
blink1073 committedNov 19, 2022
commit7c7d4005352b60625d37bb7f9d528c369ebe3a57
5 changes: 4 additions & 1 deletion.github/workflows/build.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,6 +63,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- run: |
# pandoc is not up to date in the ubuntu repos, so we install directly
wget https://github.com/jgm/pandoc/releases/download/2.14.2/pandoc-2.14.2-1-amd64.deb && sudo dpkg -i pandoc-2.14.2-1-amd64.deb
- run: hatch run docs:build

test_minimum_versions:
Expand All@@ -73,7 +76,7 @@ jobs:
- uses: actions/checkout@v3
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
python_version: "3.8"
python_version: "3.7"
- uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
with:
only_create_file: 1
Expand Down
1 change: 1 addition & 0 deletionspyproject.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -31,6 +31,7 @@ classifiers = [
]
dependencies = [
"jupyter_server>=1.16.0,<2",
"importlib-resources>=1.4;python_version<\"3.9\"",
"jupyterlab>=4.0.0a30,<5",
"jupyterlab_server>=2.13,<3",
"notebook_shim>=0.1,<0.2",
Expand Down
6 changes: 5 additions & 1 deletiontests/conftest.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,7 +4,11 @@
import os.path as osp
import pathlib
import shutil
from importlib.resources import files

try:
from importlib.resources import files
except ImportError:
from importlib_resources import files

import pytest

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp