Skip to content

Commit

Permalink
5.6.4 - Initial file-polling task
Browse files Browse the repository at this point in the history
  • Loading branch information
vkottler committed Oct 14, 2024
1 parent 0b9c3a2 commit d40ceea
Show file tree
Hide file tree
Showing 9 changed files with 14 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 @@ -77,7 +77,7 @@ jobs:
- run: |
mk python-release owner=vkottler \
repo=runtimepy version=5.6.3
repo=runtimepy version=5.6.4
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=ac4d0a4097094aeb4e3f43c5f1128115
hash=41c5a2511c80b2cbbaee668bb6a75bd2
=====================================
-->

# runtimepy ([5.6.3](https://pypi.org/project/runtimepy/))
# runtimepy ([5.6.4](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
1 change: 1 addition & 0 deletions local/configs/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ entry: {{entry}}
time_command: true

requirements:
- aiofiles
- vcorelib>=3.3.1
- svgen>=0.6.8
- websockets
Expand Down
2 changes: 1 addition & 1 deletion local/configs/python.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
author_info:
name: Vaughn Kottler
email: vaughnkottler@gmail.com
email: vaughn@libre-embedded.com
username: vkottler
versions: ["3.11", "3.12"]

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: 6
patch: 3
patch: 4
entry: runtimepy
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta:__legacy__"

[project]
name = "runtimepy"
version = "5.6.3"
version = "5.6.4"
description = "A framework for implementing Python services."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Vaughn Kottler", email = "vaughnkottler@gmail.com"}
{name = "Vaughn Kottler", email = "vaughn@libre-embedded.com"}
]
maintainers = [
{name = "Vaughn Kottler", email = "vaughnkottler@gmail.com"}
{name = "Vaughn Kottler", email = "vaughn@libre-embedded.com"}
]
classifiers = [
"Programming Language :: Python :: 3.11",
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=9547492b6c819241db9f6c010450b6ce
# hash=beefe82269955725f177c01474f7cea1
# =====================================

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

DESCRIPTION = "A framework for implementing Python services."
PKG_NAME = "runtimepy"
VERSION = "5.6.3"
VERSION = "5.6.4"

# runtimepy-specific content.
METRICS_NAME = "metrics"
Expand Down
1 change: 1 addition & 0 deletions runtimepy/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
aiofiles
vcorelib>=3.3.1
svgen>=0.6.8
websockets
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.4
# hash=23727a13b6d02be1ea4a841537c013c3
# hash=183f8b361ba2aa54cf7e87c823ff45fa
# =====================================

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

author_info = {
"name": "Vaughn Kottler",
"email": "vaughnkottler@gmail.com",
"email": "vaughn@libre-embedded.com",
"username": "vkottler",
}
pkg_info = {
Expand Down

0 comments on commit d40ceea

Please sign in to comment.