From ad97a53003e2cd0083f997eeca6137a698a568bd Mon Sep 17 00:00:00 2001 From: Vaughn Kottler Date: Wed, 15 May 2024 19:54:49 -0700 Subject: [PATCH] 1.3.4 - Update for new runtimepy --- .github/workflows/python-package.yml | 2 +- LICENSE | 2 +- README.md | 4 ++-- config | 2 +- conntextual/__init__.py | 4 ++-- conntextual/commands/common.py | 3 ++- conntextual/requirements.txt | 2 +- local/configs/package.yaml | 2 +- local/variables/package.yaml | 2 +- pyproject.toml | 2 +- 10 files changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index a98ae92..dcc052e 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -67,7 +67,7 @@ jobs: - run: | mk python-release owner=vkottler \ - repo=conntextual version=1.3.3 + repo=conntextual version=1.3.4 if: | matrix.python-version == '3.11' && matrix.system == 'ubuntu-latest' diff --git a/LICENSE b/LICENSE index e97d6f9..241562d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Vaughn Kottler +Copyright (c) 2024 Vaughn Kottler Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 51b9275..598cddf 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ ===================================== generator=datazen version=3.1.4 - hash=8b302ab6c9f0ef6558a1aeb77a875edb + hash=1c09a2d5cb8a5fe2b20a06aef6ff1564 ===================================== --> -# conntextual ([1.3.3](https://pypi.org/project/conntextual/)) +# conntextual ([1.3.4](https://pypi.org/project/conntextual/)) [![python](https://img.shields.io/pypi/pyversions/conntextual.svg)](https://pypi.org/project/conntextual/) ![Build Status](https://github.com/vkottler/conntextual/workflows/Python%20Package/badge.svg) diff --git a/config b/config index cc472ae..edfca7a 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit cc472ae7257da9c95a2059d7d9134ef880eeb43b +Subproject commit edfca7a4325ccff853b27986639cd8ca8ef5dbe2 diff --git a/conntextual/__init__.py b/conntextual/__init__.py index 6ceeb07..b1d6d09 100644 --- a/conntextual/__init__.py +++ b/conntextual/__init__.py @@ -1,7 +1,7 @@ # ===================================== # generator=datazen # version=3.1.4 -# hash=010f2975307c5e47995ef4bb32c47caf +# hash=e87046a2e98422d8d716879f2dbe946f # ===================================== """ @@ -10,4 +10,4 @@ DESCRIPTION = "A network-application TUI using textual." PKG_NAME = "conntextual" -VERSION = "1.3.3" +VERSION = "1.3.4" diff --git a/conntextual/commands/common.py b/conntextual/commands/common.py index d84eed0..fd377d1 100644 --- a/conntextual/commands/common.py +++ b/conntextual/commands/common.py @@ -28,7 +28,8 @@ def runtimepy_cli_args(args: _Namespace) -> List[str]: cli_args.extend(flags) cli_args.append(args.cmd) - cli_args.extend(list(forward_flags(args, ["init_only"]))) + + cli_args.extend(list(forward_flags(args, ["init_only", "no_poller"]))) # Ensure that the application continues to run when running the user # interface. diff --git a/conntextual/requirements.txt b/conntextual/requirements.txt index 6b98b84..0212775 100644 --- a/conntextual/requirements.txt +++ b/conntextual/requirements.txt @@ -1,5 +1,5 @@ psutil -runtimepy>=2.12.3 +runtimepy>=4.4.3 textual textual-plotext uvloop diff --git a/local/configs/package.yaml b/local/configs/package.yaml index 6ed77c8..a09f789 100644 --- a/local/configs/package.yaml +++ b/local/configs/package.yaml @@ -9,7 +9,7 @@ no_logging_init: true # - "windows-curses; sys_platform == 'win32'" requirements: - psutil - - runtimepy>=2.12.3 + - runtimepy>=4.4.3 - textual - textual-plotext - uvloop diff --git a/local/variables/package.yaml b/local/variables/package.yaml index 69fd276..97559a5 100644 --- a/local/variables/package.yaml +++ b/local/variables/package.yaml @@ -1,5 +1,5 @@ --- major: 1 minor: 3 -patch: 3 +patch: 4 entry: conntextual diff --git a/pyproject.toml b/pyproject.toml index af19bf6..6cf0114 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__" [project] name = "conntextual" -version = "1.3.3" +version = "1.3.4" description = "A network-application TUI using textual." readme = "README.md" requires-python = ">=3.11"