Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.3.4 - Update for new runtimepy #50

Merged
merged 1 commit into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
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.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)
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.4
# hash=010f2975307c5e47995ef4bb32c47caf
# hash=e87046a2e98422d8d716879f2dbe946f
# =====================================

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

DESCRIPTION = "A network-application TUI using textual."
PKG_NAME = "conntextual"
VERSION = "1.3.3"
VERSION = "1.3.4"
3 changes: 2 additions & 1 deletion conntextual/commands/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.12.3
runtimepy>=4.4.3
textual
textual-plotext
uvloop
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.12.3
- runtimepy>=4.4.3
- textual
- textual-plotext
- uvloop
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: 3
patch: 3
patch: 4
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.3.3"
version = "1.3.4"
description = "A network-application TUI using textual."
readme = "README.md"
requires-python = ">=3.11"
Expand Down