Skip to content

Commit

Permalink
1.2.9 - Forward wait-for-stop argument
Browse files Browse the repository at this point in the history
  • Loading branch information
vkottler committed Sep 23, 2023
1 parent b2917ba commit d8e3b18
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- run: |
mk python-release owner=vkottler \
repo=conntextual version=1.2.8
repo=conntextual version=1.2.9
if: |
matrix.python-version == '3.11'
&& matrix.system == 'ubuntu-latest'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
=====================================
generator=datazen
version=3.1.3
hash=3aec4b55213f3a045f072714cbdd153b
hash=80259471aaab48e1d301b2bf62ccde22
=====================================
-->

# conntextual ([1.2.8](https://pypi.org/project/conntextual/))
# conntextual ([1.2.9](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)
Expand Down
4 changes: 2 additions & 2 deletions conntextual/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.3
# hash=d675514a105f4d75373c5bb1857e34f5
# hash=0d892c50ad96d5651aa34b5fe258c337
# =====================================

"""
Expand All @@ -10,4 +10,4 @@

DESCRIPTION = "A network-application TUI using textual."
PKG_NAME = "conntextual"
VERSION = "1.2.8"
VERSION = "1.2.9"
7 changes: 4 additions & 3 deletions conntextual/commands/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ def runtimepy_cli_args(args: _Namespace) -> List[str]:
cli_args.append("arbiter")
cli_args.extend(list(forward_flags(args, ["init_only"])))

# Only wait for the program to exit when in user-interface mode.
if not is_headless:
cli_args.append("-w")
# Ensure that the application continues to run when running the user
# interface.
if not is_headless or args.wait_for_stop:
cli_args.append("--wait-for-stop")

cli_args.extend(args.configs)

Expand Down
2 changes: 1 addition & 1 deletion conntextual/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
psutil
runtimepy>=2.11.1
runtimepy>=2.12.3
textual
uvloop
plotext
Expand Down
2 changes: 1 addition & 1 deletion local/configs/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ no_logging_init: true
# - "windows-curses; sys_platform == 'win32'"
requirements:
- psutil
- runtimepy>=2.11.1
- runtimepy>=2.12.3
- textual
- uvloop
- plotext
Expand Down
2 changes: 1 addition & 1 deletion local/variables/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
major: 1
minor: 2
patch: 8
patch: 9
entry: conntextual
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"

[project]
name = "conntextual"
version = "1.2.8"
version = "1.2.9"
description = "A network-application TUI using textual."
readme = "README.md"
requires-python = ">=3.11"
Expand Down

0 comments on commit d8e3b18

Please sign in to comment.