Skip to content

Commit 18716c9

Browse files
authored
Merge pull request #271 from vkottler/dev/5.6.4
5.6.4 - Initial file-polling task
2 parents 0b9c3a2 + c01aeae commit 18716c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+545
-188
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
7878
- run: |
7979
mk python-release owner=vkottler \
80-
repo=runtimepy version=5.6.3
80+
repo=runtimepy version=5.6.4
8181
if: |
8282
matrix.python-version == '3.12'
8383
&& matrix.system == 'ubuntu-latest'

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
max-args=10
33
max-positional-arguments=10
44
max-attributes=15
5-
max-parents=13
5+
max-parents=14
66
max-public-methods=22
77
max-branches=13
88

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
=====================================
33
generator=datazen
44
version=3.1.4
5-
hash=ac4d0a4097094aeb4e3f43c5f1128115
5+
hash=41c5a2511c80b2cbbaee668bb6a75bd2
66
=====================================
77
-->
88

9-
# runtimepy ([5.6.3](https://pypi.org/project/runtimepy/))
9+
# runtimepy ([5.6.4](https://pypi.org/project/runtimepy/))
1010

1111
[![python](https://img.shields.io/pypi/pyversions/runtimepy.svg)](https://pypi.org/project/runtimepy/)
1212
![Build Status](https://github.com/vkottler/runtimepy/workflows/Python%20Package/badge.svg)

config

local/configs/package.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ entry: {{entry}}
77
time_command: true
88

99
requirements:
10-
- vcorelib>=3.3.1
10+
- aiofiles
11+
- vcorelib>=3.4.2
1112
- svgen>=0.6.8
1213
- websockets
1314
- psutil
@@ -39,5 +40,9 @@ init_local: |
3940
METRICS_NAME = "metrics"
4041
DEFAULT_EXT = "yaml"
4142
43+
mypy_local: |
44+
[mypy-aiofiles.*]
45+
ignore_missing_imports = True
46+
4247
ci_local:
4348
- "- run: mk python-editable"

local/configs/python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
author_info:
33
name: Vaughn Kottler
4-
email: vaughnkottler@gmail.com
4+
email: vaughn@libre-embedded.com
55
username: vkottler
66
versions: ["3.11", "3.12"]
77

local/variables/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
major: 5
33
minor: 6
4-
patch: 3
4+
patch: 4
55
entry: runtimepy

mypy.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@ warn_unused_ignores = False
1313
strict = False
1414
disallow_any_generics = False
1515
strict_equality = False
16+
17+
# runtimepy-specific configurations.
18+
[mypy-aiofiles.*]
19+
ignore_missing_imports = True

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta:__legacy__"
44

55
[project]
66
name = "runtimepy"
7-
version = "5.6.3"
7+
version = "5.6.4"
88
description = "A framework for implementing Python services."
99
readme = "README.md"
1010
requires-python = ">=3.11"
1111
authors = [
12-
{name = "Vaughn Kottler", email = "vaughnkottler@gmail.com"}
12+
{name = "Vaughn Kottler", email = "vaughn@libre-embedded.com"}
1313
]
1414
maintainers = [
15-
{name = "Vaughn Kottler", email = "vaughnkottler@gmail.com"}
15+
{name = "Vaughn Kottler", email = "vaughn@libre-embedded.com"}
1616
]
1717
classifiers = [
1818
"Programming Language :: Python :: 3.11",

runtimepy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# =====================================
22
# generator=datazen
33
# version=3.1.4
4-
# hash=9547492b6c819241db9f6c010450b6ce
4+
# hash=beefe82269955725f177c01474f7cea1
55
# =====================================
66

77
"""
@@ -10,7 +10,7 @@
1010

1111
DESCRIPTION = "A framework for implementing Python services."
1212
PKG_NAME = "runtimepy"
13-
VERSION = "5.6.3"
13+
VERSION = "5.6.4"
1414

1515
# runtimepy-specific content.
1616
METRICS_NAME = "metrics"

0 commit comments

Comments
 (0)