Skip to content

Commit

Permalink
Merge pull request #291 from vkottler/dev/5.8.1
Browse files Browse the repository at this point in the history
5.8.1 - Task config attribute
  • Loading branch information
vkottler authored Nov 21, 2024
2 parents b886c9b + 41c6639 commit cb37739
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 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.8.0
repo=runtimepy version=5.8.1
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=0cb0fecd5f4e84d1b639d4c155ab541c
hash=de150fbd8ea83f317f485e01380215e6
=====================================
-->

# runtimepy ([5.8.0](https://pypi.org/project/runtimepy/))
# runtimepy ([5.8.1](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/variables/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
major: 5
minor: 8
patch: 0
patch: 1
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.8.0"
version = "5.8.1"
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=3f66411c94ea81080e4fff8589bd828b
# hash=50f22b2d623cea7b3ea3eaf94b419b39
# =====================================

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

DESCRIPTION = "A framework for implementing Python services."
PKG_NAME = "runtimepy"
VERSION = "5.8.0"
VERSION = "5.8.1"

# runtimepy-specific content.
METRICS_NAME = "metrics"
Expand Down
1 change: 1 addition & 0 deletions runtimepy/task/basic/periodic.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def __init__(
self.name = name

self.set_markdown(markdown=markdown, config=config, package=PKG_NAME)
self.config: _JsonObject = config or {}

LoggerMixinLevelControl.__init__(self, logger=_getLogger(self.name))
self._task: _Optional[_asyncio.Task[None]] = None
Expand Down

0 comments on commit cb37739

Please sign in to comment.