notebook/pyproject.toml
Eric Gentry dc64e03afc
Make notebook 6.5.x point to nbclassic static assets (#6474)
* Initial WIP static files removal (it builds, but has bugs).

* del nbclassic from __init__.

* Removed unneeded CSS/JS compilation logic.

* Removed more frontend web logic.

* Added nbclassic as a proper notebook dependency.

* Updated nbclassic dependency version.

* Added nbclassic to pyproject.toml.

* Moved DEFAULT_STATIC_FILES_PATH.

* Removed JS tests.

* Added nbclassic tgo docs build.

* Adding blank pre-commit-config for CI checks.

* Edited empty pre-commit-config

* Added docs to enforce-label workflow.

* Revised workflow comments.

* Adding WIP version_spec value to check_release step.

* Changed dev version number.

* Revert "Changed dev version number."

This reverts commit e66673160f.

* Manual WIP version number update to 6.5.0.dev

* Manual (WIP) version dummy value for CI check.

* Revised version numbner (WIP).

* Reverted version number to pre-PR value.

* Pinned selenium version.

* Removed setup.py jsversion call.

* Removed webpack config.

* Removed bower/other web files.

* Disable test with modal dialog error.

* Modified pip upgrade command.
2022-07-25 14:36:46 +02:00

31 lines
1.1 KiB
TOML

[build-system]
requires=["jupyter_packaging~=0.9", "nbclassic>=0.4.0"]
build-backend = "setuptools.build_meta"
[tool.check-manifest]
ignore = ["docs-translations/**", ".*", "*.yml", "*.less", "git-hooks/**", "MANIFEST.in", "RELEASE.md", "jupyter.svg", "notebook/static/**", "notebook/i18n/**/*.json", "docs/source/*.*"]
ignore-bad-ideas = ["notebook/i18n/**/*.mo"]
[tool.jupyter-releaser]
skip = ["check-links"]
[tool.jupyter-releaser.hooks]
before-build-python = ["pip install babel", "npm install -g po2json"]
[tool.jupyter-releaser.options]
ignore-glob = ["docs/source/examples/Notebook/Working With Markdown Cells.ipynb", "docs-translations/**/README.md", "docs/source/contributing.rst", "docs/source/examples/Notebook/JavaScript Notebook Extensions.ipynb", "CHANGELOG.md", "notebook/static/components/**/*.*"]
[tool.tbump.version]
current = "6.4.13.dev0"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "notebook/_version.py"