Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix inclusion of jupyter file and check in CI #276

Merged
merged 1 commit into from Jul 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -40,6 +40,10 @@ jobs:
- name: Test with pytest
run: |
python -m pytest -vv --timeout 60 --cov jupyter_core --cov-report term-missing:skip-covered
- name: Check CLI
run: |
cd $HOME
jupyter troubleshoot

test_miniumum_versions:
name: Test Minimum Versions
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
@@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling>=1.0"]
requires = ["hatchling>=1.4"]
build-backend = "hatchling.build"

[project]
Expand Down Expand Up @@ -54,6 +54,9 @@ jupyter-troubleshoot = "jupyter_core.troubleshoot:main"
[tool.hatch.version]
path = "jupyter_core/version.py"

[tool.hatch.build.force-include]
"./jupyter.py" = "jupyter.py"

[tool.mypy]
check_untyped_defs = true
disallow_any_generics = false
Expand Down