We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 035bf11 commit e7eeb9eCopy full SHA for e7eeb9e
.github/workflows/test.yml
@@ -40,6 +40,10 @@ jobs:
40
- name: Test with pytest
41
run: |
42
python -m pytest -vv --timeout 60 --cov jupyter_core --cov-report term-missing:skip-covered
43
+ - name: Check CLI
44
+ run: |
45
+ cd $HOME
46
+ jupyter troubleshoot
47
48
test_miniumum_versions:
49
name: Test Minimum Versions
pyproject.toml
@@ -1,5 +1,5 @@
1
[build-system]
2
-requires = ["hatchling>=1.0"]
+requires = ["hatchling>=1.4"]
3
build-backend = "hatchling.build"
4
5
[project]
@@ -54,6 +54,9 @@ jupyter-troubleshoot = "jupyter_core.troubleshoot:main"
54
[tool.hatch.version]
55
path = "jupyter_core/version.py"
56
57
+[tool.hatch.build.force-include]
58
+"./jupyter.py" = "jupyter.py"
59
+
60
[tool.mypy]
61
check_untyped_defs = true
62
disallow_any_generics = false
0 commit comments