diff --git a/plugins/cell/pyproject.toml b/plugins/cell/pyproject.toml index dc863d7..28ce11c 100644 --- a/plugins/cell/pyproject.toml +++ b/plugins/cell/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_cell" +version = "0.2.13" description = "TXL plugin for a cell" readme = "README.md" requires-python = ">=3.10" @@ -22,10 +23,9 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "pycrdt >=0.8.11,<0.9.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/cell" @@ -33,6 +33,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/cell" [project.entry-points] "asphalt.components" = {cell = "txl_cell.components:CellComponent"} "txl.components" = {cell = "txl_cell.components:CellComponent"} - -[tool.hatch.version] -path = "txl_cell/__init__.py" diff --git a/plugins/cell/txl_cell/__init__.py b/plugins/cell/txl_cell/__init__.py index 11ef092..e69de29 100644 --- a/plugins/cell/txl_cell/__init__.py +++ b/plugins/cell/txl_cell/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/console/pyproject.toml b/plugins/console/pyproject.toml index 4275455..fbb3b61 100644 --- a/plugins/console/pyproject.toml +++ b/plugins/console/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_console" +version = "0.2.15" description = "TXL plugin for a Jupyter console" readme = "README.md" requires-python = ">=3.10" @@ -22,10 +23,9 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "jupyter-ydoc >=2.0.0,<3.0.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/console" @@ -33,6 +33,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/console" [project.entry-points] "asphalt.components" = {console = "txl_console.components:ConsoleComponent"} "txl.components" = {console = "txl_console.components:ConsoleComponent"} - -[tool.hatch.version] -path = "txl_console/__init__.py" diff --git a/plugins/console/txl_console/__init__.py b/plugins/console/txl_console/__init__.py index ddc77a8..e69de29 100644 --- a/plugins/console/txl_console/__init__.py +++ b/plugins/console/txl_console/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.15" diff --git a/plugins/editors/pyproject.toml b/plugins/editors/pyproject.toml index 4058b31..0a40dbf 100644 --- a/plugins/editors/pyproject.toml +++ b/plugins/editors/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_editors" +version = "0.2.13" description = "TXL plugin for editors" readme = "README.md" requires-python = ">=3.10" @@ -22,9 +23,8 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl" + "txl >=0.2.18,<0.3.0" ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/editors" @@ -32,6 +32,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/editors" [project.entry-points] "asphalt.components" = {editors = "txl_editors.components:EditorsComponent"} "txl.components" = {editors = "txl_editors.components:EditorsComponent"} - -[tool.hatch.version] -path = "txl_editors/__init__.py" diff --git a/plugins/editors/txl_editors/__init__.py b/plugins/editors/txl_editors/__init__.py index 11ef092..e69de29 100644 --- a/plugins/editors/txl_editors/__init__.py +++ b/plugins/editors/txl_editors/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/file_browser/pyproject.toml b/plugins/file_browser/pyproject.toml index a433fa2..429ab28 100644 --- a/plugins/file_browser/pyproject.toml +++ b/plugins/file_browser/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_file_browser" +version = "0.2.13" description = "TXL plugin for a file browser" readme = "README.md" requires-python = ">=3.10" @@ -22,9 +23,8 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl" + "txl >=0.2.18,<0.3.0" ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/file_browser" @@ -32,6 +32,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/file_browser" [project.entry-points] "asphalt.components" = {file_browser = "txl_file_browser.components:FileBrowserComponent"} "txl.components" = {file_browser = "txl_file_browser.components:FileBrowserComponent"} - -[tool.hatch.version] -path = "txl_file_browser/__init__.py" diff --git a/plugins/file_browser/txl_file_browser/__init__.py b/plugins/file_browser/txl_file_browser/__init__.py index 11ef092..e69de29 100644 --- a/plugins/file_browser/txl_file_browser/__init__.py +++ b/plugins/file_browser/txl_file_browser/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/image_viewer/pyproject.toml b/plugins/image_viewer/pyproject.toml index 1a14d70..af7d0eb 100644 --- a/plugins/image_viewer/pyproject.toml +++ b/plugins/image_viewer/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_image_viewer" +version = "0.2.13" description = "TXL plugin for an image viewer" readme = "README.md" requires-python = ">=3.10" @@ -22,10 +23,9 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "textual-imageview >=0.1.1", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/image_viewer" @@ -33,6 +33,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/image_viewer" [project.entry-points] "asphalt.components" = {image_viewer = "txl_image_viewer.components:ImageViewerComponent"} "txl.components" = {image_viewer = "txl_image_viewer.components:ImageViewerComponent"} - -[tool.hatch.version] -path = "txl_image_viewer/__init__.py" diff --git a/plugins/image_viewer/txl_image_viewer/__init__.py b/plugins/image_viewer/txl_image_viewer/__init__.py index 11ef092..e69de29 100644 --- a/plugins/image_viewer/txl_image_viewer/__init__.py +++ b/plugins/image_viewer/txl_image_viewer/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/jpterm/pyproject.toml b/plugins/jpterm/pyproject.toml index b84842e..beff6fe 100644 --- a/plugins/jpterm/pyproject.toml +++ b/plugins/jpterm/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_jpterm" +version = "0.2.13" description = "TXL plugin for the jpterm app" readme = "README.md" requires-python = ">=3.10" @@ -22,9 +23,8 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/jpterm" @@ -32,6 +32,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/jpterm" [project.entry-points] "asphalt.components" = {jpterm = "txl_jpterm.components:JptermComponent"} "txl.components" = {jpterm = "txl_jpterm.components:JptermComponent"} - -[tool.hatch.version] -path = "txl_jpterm/__init__.py" diff --git a/plugins/jpterm/txl_jpterm/__init__.py b/plugins/jpterm/txl_jpterm/__init__.py index 11ef092..e69de29 100644 --- a/plugins/jpterm/txl_jpterm/__init__.py +++ b/plugins/jpterm/txl_jpterm/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/kernel/pyproject.toml b/plugins/kernel/pyproject.toml index 2650631..5b8b707 100644 --- a/plugins/kernel/pyproject.toml +++ b/plugins/kernel/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_kernel" +version = "0.2.13" description = "TXL plugin for a kernel driver" readme = "README.md" requires-python = ">=3.10" @@ -22,15 +23,11 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", - "asphalt", + "txl >=0.2.18,<0.3.0", + "asphalt >=4.0.0,<5.0.0", "python-dateutil >=2.8.2", "pycrdt >=0.8.11,<0.9.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/kernel" - -[tool.hatch.version] -path = "txl_kernel/__init__.py" diff --git a/plugins/kernel/txl_kernel/__init__.py b/plugins/kernel/txl_kernel/__init__.py index 11ef092..e69de29 100644 --- a/plugins/kernel/txl_kernel/__init__.py +++ b/plugins/kernel/txl_kernel/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/launcher/pyproject.toml b/plugins/launcher/pyproject.toml index 7592eb5..506a671 100644 --- a/plugins/launcher/pyproject.toml +++ b/plugins/launcher/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_launcher" +version = "0.2.13" description = "TXL plugin for a launcher" readme = "README.md" requires-python = ">=3.10" @@ -22,9 +23,8 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl" + "txl >=0.2.18,<0.3.0" ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/launcher" @@ -32,6 +32,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/launcher" [project.entry-points] "asphalt.components" = {launcher = "txl_launcher.components:LauncherComponent"} "txl.components" = {launcher = "txl_launcher.components:LauncherComponent"} - -[tool.hatch.version] -path = "txl_launcher/__init__.py" diff --git a/plugins/launcher/txl_launcher/__init__.py b/plugins/launcher/txl_launcher/__init__.py index 11ef092..e69de29 100644 --- a/plugins/launcher/txl_launcher/__init__.py +++ b/plugins/launcher/txl_launcher/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/local_contents/pyproject.toml b/plugins/local_contents/pyproject.toml index 4880273..24d23ac 100644 --- a/plugins/local_contents/pyproject.toml +++ b/plugins/local_contents/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_local_contents" +version = "0.2.13" description = "TXL plugin for local contents" readme = "README.md" requires-python = ">=3.10" @@ -22,11 +23,10 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "anyio >=3.7.0,<5", "jupyter-ydoc >=2.0.0,<3.0.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/local_contents" @@ -34,6 +34,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/local_contents" [project.entry-points] "asphalt.components" = {local_contents = "txl_local_contents.components:LocalContentsComponent"} "txl.components" = {local_contents = "txl_local_contents.components:LocalContentsComponent"} - -[tool.hatch.version] -path = "txl_local_contents/__init__.py" diff --git a/plugins/local_contents/txl_local_contents/__init__.py b/plugins/local_contents/txl_local_contents/__init__.py index 11ef092..e69de29 100644 --- a/plugins/local_contents/txl_local_contents/__init__.py +++ b/plugins/local_contents/txl_local_contents/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/local_kernels/pyproject.toml b/plugins/local_kernels/pyproject.toml index dd584dd..bb23d93 100644 --- a/plugins/local_kernels/pyproject.toml +++ b/plugins/local_kernels/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_local_kernels" +version = "0.2.13" description = "TXL plugin for local kernels" readme = "README.md" requires-python = ">=3.10" @@ -22,12 +23,11 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "txl_kernel", "pyzmq >=24.0.1", "ipykernel", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/local_kernels" @@ -35,6 +35,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/local_kernels" [project.entry-points] "asphalt.components" = {local_kernels = "txl_local_kernels.components:LocalKernelsComponent", local_kernelspecs = "txl_local_kernels.components:LocalKernelspecsComponent"} "txl.components" = {local_kernels = "txl_local_kernels.components:LocalKernelsComponent", local_kernelspecs = "txl_local_kernels.components:LocalKernelspecsComponent"} - -[tool.hatch.version] -path = "txl_local_kernels/__init__.py" diff --git a/plugins/local_kernels/txl_local_kernels/__init__.py b/plugins/local_kernels/txl_local_kernels/__init__.py index 11ef092..e69de29 100644 --- a/plugins/local_kernels/txl_local_kernels/__init__.py +++ b/plugins/local_kernels/txl_local_kernels/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/local_terminals/pyproject.toml b/plugins/local_terminals/pyproject.toml index 2f762ea..a1dc367 100644 --- a/plugins/local_terminals/pyproject.toml +++ b/plugins/local_terminals/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_local_terminals" +version = "0.2.13" description = "TXL plugin for local terminals" readme = "README.md" requires-python = ">=3.10" @@ -22,11 +23,10 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "pywinpty;platform_system=='Windows'", "anyio >=3.7.0,<5", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/local_terminals" @@ -34,6 +34,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/local_terminals" [project.entry-points] "asphalt.components" = {local_terminals = "txl_local_terminals.components:LocalTerminalsComponent"} "txl.components" = {local_terminals = "txl_local_terminals.components:LocalTerminalsComponent"} - -[tool.hatch.version] -path = "txl_local_terminals/__init__.py" diff --git a/plugins/local_terminals/txl_local_terminals/__init__.py b/plugins/local_terminals/txl_local_terminals/__init__.py index 11ef092..e69de29 100644 --- a/plugins/local_terminals/txl_local_terminals/__init__.py +++ b/plugins/local_terminals/txl_local_terminals/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/markdown_viewer/pyproject.toml b/plugins/markdown_viewer/pyproject.toml index 8bcc92d..fd8c7c0 100644 --- a/plugins/markdown_viewer/pyproject.toml +++ b/plugins/markdown_viewer/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_markdown_viewer" +version = "0.2.13" description = "TXL plugin for a Markdown viewer" readme = "README.md" requires-python = ">=3.10" @@ -22,9 +23,8 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/markdown_viewer" @@ -32,6 +32,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/markdown_viewer" [project.entry-points] "asphalt.components" = {markdown_viewer = "txl_markdown_viewer.components:MarkdownViewerComponent"} "txl.components" = {markdown_viewer = "txl_markdown_viewer.components:MarkdownViewerComponent"} - -[tool.hatch.version] -path = "txl_markdown_viewer/__init__.py" diff --git a/plugins/markdown_viewer/txl_markdown_viewer/__init__.py b/plugins/markdown_viewer/txl_markdown_viewer/__init__.py index 11ef092..e69de29 100644 --- a/plugins/markdown_viewer/txl_markdown_viewer/__init__.py +++ b/plugins/markdown_viewer/txl_markdown_viewer/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/notebook_editor/pyproject.toml b/plugins/notebook_editor/pyproject.toml index 3406b44..e917e34 100644 --- a/plugins/notebook_editor/pyproject.toml +++ b/plugins/notebook_editor/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_notebook_editor" +version = "0.2.13" description = "TXL plugin for a notebook editor" readme = "README.md" requires-python = ">=3.10" @@ -22,11 +23,10 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "pycrdt >=0.8.11,<0.9.0", "jupyter-ydoc >=2.0.0,<3.0.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/notebook_editor" @@ -34,6 +34,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/notebook_editor" [project.entry-points] "asphalt.components" = {notebook_editor = "txl_notebook_editor.components:NotebookEditorComponent"} "txl.components" = {notebook_editor = "txl_notebook_editor.components:NotebookEditorComponent"} - -[tool.hatch.version] -path = "txl_notebook_editor/__init__.py" diff --git a/plugins/notebook_editor/txl_notebook_editor/__init__.py b/plugins/notebook_editor/txl_notebook_editor/__init__.py index 11ef092..e69de29 100644 --- a/plugins/notebook_editor/txl_notebook_editor/__init__.py +++ b/plugins/notebook_editor/txl_notebook_editor/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/remote_contents/pyproject.toml b/plugins/remote_contents/pyproject.toml index 201c770..87a9d18 100644 --- a/plugins/remote_contents/pyproject.toml +++ b/plugins/remote_contents/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_remote_contents" +version = "0.2.13" description = "TXL plugin for remote contents" readme = "README.md" requires-python = ">=3.10" @@ -22,14 +23,13 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "httpx>=0.23.1", "httpx-ws>=0.4.2", "pycrdt >=0.8.11,<0.9.0", "pycrdt-websocket >=0.13.0,<0.14.0", "jupyter-ydoc >=2.0.0,<3.0.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/remote_contents" @@ -37,6 +37,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/remote_contents" [project.entry-points] "asphalt.components" = {remote_contents = "txl_remote_contents.components:RemoteContentsComponent"} "txl.components" = {remote_contents = "txl_remote_contents.components:RemoteContentsComponent"} - -[tool.hatch.version] -path = "txl_remote_contents/__init__.py" diff --git a/plugins/remote_contents/txl_remote_contents/__init__.py b/plugins/remote_contents/txl_remote_contents/__init__.py index 11ef092..e69de29 100644 --- a/plugins/remote_contents/txl_remote_contents/__init__.py +++ b/plugins/remote_contents/txl_remote_contents/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/remote_kernels/pyproject.toml b/plugins/remote_kernels/pyproject.toml index 7c732b6..39b07b1 100644 --- a/plugins/remote_kernels/pyproject.toml +++ b/plugins/remote_kernels/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_remote_kernels" +version = "0.2.13" description = "TXL plugin for remote kernels" readme = "README.md" requires-python = ">=3.10" @@ -22,13 +23,12 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "txl_kernel", "httpx >=0.23.1", "httpx-ws >=0.4.2", "pycrdt >=0.8.11,<0.9.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/remote_kernels" @@ -36,6 +36,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/remote_kernels" [project.entry-points] "asphalt.components" = {remote_kernels = "txl_remote_kernels.components:RemoteKernelsComponent", remote_kernelspecs = "txl_remote_kernels.components:RemoteKernelspecsComponent"} "txl.components" = {remote_kernels = "txl_remote_kernels.components:RemoteKernelsComponent", remote_kernelspecs = "txl_remote_kernels.components:RemoteKernelspecsComponent"} - -[tool.hatch.version] -path = "txl_remote_kernels/__init__.py" diff --git a/plugins/remote_kernels/txl_remote_kernels/__init__.py b/plugins/remote_kernels/txl_remote_kernels/__init__.py index 11ef092..e69de29 100644 --- a/plugins/remote_kernels/txl_remote_kernels/__init__.py +++ b/plugins/remote_kernels/txl_remote_kernels/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/remote_terminals/pyproject.toml b/plugins/remote_terminals/pyproject.toml index 4a803b2..cbe5999 100644 --- a/plugins/remote_terminals/pyproject.toml +++ b/plugins/remote_terminals/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_remote_terminals" +version = "0.2.13" description = "TXL plugin for remote terminals" readme = "README.md" requires-python = ">=3.10" @@ -22,11 +23,10 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "httpx>=0.23.1", "httpx-ws>=0.4.2", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/remote_terminals" @@ -34,6 +34,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/remote_terminals" [project.entry-points] "asphalt.components" = {remote_terminals = "txl_remote_terminals.components:RemoteTerminalsComponent"} "txl.components" = {remote_terminals = "txl_remote_terminals.components:RemoteTerminalsComponent"} - -[tool.hatch.version] -path = "txl_remote_terminals/__init__.py" diff --git a/plugins/remote_terminals/txl_remote_terminals/__init__.py b/plugins/remote_terminals/txl_remote_terminals/__init__.py index 11ef092..e69de29 100644 --- a/plugins/remote_terminals/txl_remote_terminals/__init__.py +++ b/plugins/remote_terminals/txl_remote_terminals/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/terminal/pyproject.toml b/plugins/terminal/pyproject.toml index a6e7736..2bae7b9 100644 --- a/plugins/terminal/pyproject.toml +++ b/plugins/terminal/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_terminal" +version = "0.2.13" description = "TXL plugin for a terminal widget" readme = "README.md" requires-python = ">=3.10" @@ -22,10 +23,9 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "pyte>=0.8.1", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/terminal" @@ -33,6 +33,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/terminal" [project.entry-points] "asphalt.components" = {terminal = "txl_terminal.components:TerminalComponent"} "txl.components" = {terminal = "txl_terminal.components:TerminalComponent"} - -[tool.hatch.version] -path = "txl_terminal/__init__.py" diff --git a/plugins/terminal/txl_terminal/__init__.py b/plugins/terminal/txl_terminal/__init__.py index 11ef092..e69de29 100644 --- a/plugins/terminal/txl_terminal/__init__.py +++ b/plugins/terminal/txl_terminal/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/text_editor/pyproject.toml b/plugins/text_editor/pyproject.toml index bd43832..81457a9 100644 --- a/plugins/text_editor/pyproject.toml +++ b/plugins/text_editor/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_text_editor" +version = "0.2.13" description = "TXL plugin for a text editor" readme = "README.md" requires-python = ">=3.10" @@ -22,9 +23,8 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl" + "txl >=0.2.18,<0.3.0" ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/text_editor" @@ -32,6 +32,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/text_editor" [project.entry-points] "asphalt.components" = {text_editor = "txl_text_editor.components:TextEditorComponent"} "txl.components" = {text_editor = "txl_text_editor.components:TextEditorComponent"} - -[tool.hatch.version] -path = "txl_text_editor/__init__.py" diff --git a/plugins/text_editor/txl_text_editor/__init__.py b/plugins/text_editor/txl_text_editor/__init__.py index 11ef092..e69de29 100644 --- a/plugins/text_editor/txl_text_editor/__init__.py +++ b/plugins/text_editor/txl_text_editor/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.13" diff --git a/plugins/widgets/pyproject.toml b/plugins/widgets/pyproject.toml index 50a7f62..158d010 100644 --- a/plugins/widgets/pyproject.toml +++ b/plugins/widgets/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl_widgets" +version = "0.2.14" description = "TXL plugin for kernel widgets" readme = "README.md" requires-python = ">=3.10" @@ -22,12 +23,11 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "txl", + "txl >=0.2.18,<0.3.0", "ypywidgets >=0.7.0,<0.8.0", "ypywidgets-textual >=0.4.4,<0.5.0", "pycrdt >=0.8.11,<0.9.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/plugins/widgets" @@ -35,6 +35,3 @@ Source = "https://github.com/davidbrochart/jpterm/plugins/widgets" [project.entry-points] "asphalt.components" = {widgets = "txl_widgets.components:WidgetsComponent"} "txl.components" = {widgets = "txl_widgets.components:WidgetsComponent"} - -[tool.hatch.version] -path = "txl_widgets/__init__.py" diff --git a/plugins/widgets/txl_widgets/__init__.py b/plugins/widgets/txl_widgets/__init__.py index f3291e9..e69de29 100644 --- a/plugins/widgets/txl_widgets/__init__.py +++ b/plugins/widgets/txl_widgets/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.14" diff --git a/pyproject.toml b/pyproject.toml index c1002f9..94e3cc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,9 +60,6 @@ jpterm = "jpterm.cli:main" [project.urls] Homepage = "https://github.com/davidbrochart/jpterm" -[tool.hatch.version] -path = "jpterm/__init__.py" - [tool.hatch.envs.docs] features = ["docs"] diff --git a/txl/pyproject.toml b/txl/pyproject.toml index b359969..f275a6b 100644 --- a/txl/pyproject.toml +++ b/txl/pyproject.toml @@ -4,6 +4,7 @@ build-backend = "hatchling.build" [project] name = "txl" +version = "0.2.18" description = "" readme = "README.md" requires-python = ">=3.10" @@ -25,10 +26,6 @@ dependencies = [ "asphalt >=4.12.0,<5", "textual[syntax] >=0.76.0,<0.77.0", ] -dynamic = ["version"] [project.urls] Source = "https://github.com/davidbrochart/jpterm/txl" - -[tool.hatch.version] -path = "txl/__init__.py" diff --git a/txl/txl/__init__.py b/txl/txl/__init__.py index 927de25..e69de29 100644 --- a/txl/txl/__init__.py +++ b/txl/txl/__init__.py @@ -1 +0,0 @@ -__version__ = "0.2.18"