Skip to content

Commit e7eeb9e

Browse files
authored
Fix inclusion of jupyter file and check in CI (#276)
1 parent 035bf11 commit e7eeb9e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/test.yml

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ jobs:
4040
- name: Test with pytest
4141
run: |
4242
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
4347
4448
test_miniumum_versions:
4549
name: Test Minimum Versions

pyproject.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["hatchling>=1.0"]
2+
requires = ["hatchling>=1.4"]
33
build-backend = "hatchling.build"
44

55
[project]
@@ -54,6 +54,9 @@ jupyter-troubleshoot = "jupyter_core.troubleshoot:main"
5454
[tool.hatch.version]
5555
path = "jupyter_core/version.py"
5656

57+
[tool.hatch.build.force-include]
58+
"./jupyter.py" = "jupyter.py"
59+
5760
[tool.mypy]
5861
check_untyped_defs = true
5962
disallow_any_generics = false

0 commit comments

Comments
 (0)