Skip to content

Commit

Permalink
Merge pull request #288 from vkottler/dev/5.7.9
Browse files Browse the repository at this point in the history
5.7.9 - Max width for channel column
  • Loading branch information
vkottler authored Nov 1, 2024
2 parents f1329d3 + ebc7490 commit 404a397
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- run: |
mk python-release owner=vkottler \
repo=runtimepy version=5.7.8
repo=runtimepy version=5.7.9
if: |
matrix.python-version == '3.12'
&& 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.4
hash=310d6c6e0ee94ad235278f3b6a152499
hash=9fbafffa1da655b349a05dfa48addf0b
=====================================
-->

# runtimepy ([5.7.8](https://pypi.org/project/runtimepy/))
# runtimepy ([5.7.9](https://pypi.org/project/runtimepy/))

[![python](https://img.shields.io/pypi/pyversions/runtimepy.svg)](https://pypi.org/project/runtimepy/)
![Build Status](https://github.com/vkottler/runtimepy/workflows/Python%20Package/badge.svg)
Expand Down
2 changes: 1 addition & 1 deletion local/configs/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ time_command: true

requirements:
- aiofiles
- vcorelib>=3.4.3
- vcorelib>=3.4.5
- svgen>=0.6.8
- websockets
- psutil
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: 5
minor: 7
patch: 8
patch: 9
entry: runtimepy
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 = "runtimepy"
version = "5.7.8"
version = "5.7.9"
description = "A framework for implementing Python services."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
4 changes: 2 additions & 2 deletions runtimepy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.4
# hash=23ee90378a544cf13d0ee84da27431ba
# hash=5d30f53776c61076df3ffeca2fdb30a1
# =====================================

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

DESCRIPTION = "A framework for implementing Python services."
PKG_NAME = "runtimepy"
VERSION = "5.7.8"
VERSION = "5.7.9"

# runtimepy-specific content.
METRICS_NAME = "metrics"
Expand Down
3 changes: 3 additions & 0 deletions runtimepy/data/css/bootstrap_extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
overflow-x: hidden;
flex-grow: 0;
flex-shrink: 0;

/* Don't allow plot area to become too hidden. */
max-width: 75%;
}

.channel-value {
Expand Down
1 change: 1 addition & 0 deletions runtimepy/net/server/websocket/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def clear_loggers(self) -> None:

for logger in self._loggers:
logger.removeHandler(self.tab_logger)
self.tab_logger.drain_str()
self._loggers = []

def add_logger(self, logger: logging.Logger) -> None:
Expand Down
2 changes: 1 addition & 1 deletion runtimepy/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiofiles
vcorelib>=3.4.3
vcorelib>=3.4.5
svgen>=0.6.8
websockets
psutil
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/test_arbiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def test_arbiter_command_basic():
)


@mark.timeout(30)
@mark.timeout(60)
def test_arbiter_command_advanced():
"""Test advanced usages of the 'arbiter' command."""

Expand Down

0 comments on commit 404a397

Please sign in to comment.