File tree Expand file tree Collapse file tree 6 files changed +19
-7
lines changed Expand file tree Collapse file tree 6 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 78
78
79
79
- run : |
80
80
mk python-release owner=libre-embedded \
81
- repo=runtimepy version=5.11.5
81
+ repo=runtimepy version=5.11.6
82
82
if: |
83
83
matrix.python-version == '3.12'
84
84
&& matrix.system == 'ubuntu-latest'
Original file line number Diff line number Diff line change 2
2
=====================================
3
3
generator=datazen
4
4
version=3.2.0
5
- hash=b043082ee29865c76d3785421e4dbff6
5
+ hash=0f29d06f506a6b2bb9e2da20ac1e5c08
6
6
=====================================
7
7
-->
8
8
9
- # runtimepy ([ 5.11.5 ] ( https://pypi.org/project/runtimepy/ ) )
9
+ # runtimepy ([ 5.11.6 ] ( https://pypi.org/project/runtimepy/ ) )
10
10
11
11
[ ![ python] ( https://img.shields.io/pypi/pyversions/runtimepy.svg )] ( https://pypi.org/project/runtimepy/ )
12
12
![ Build Status] ( https://github.com/libre-embedded/runtimepy/workflows/Python%20Package/badge.svg )
Original file line number Diff line number Diff line change 1
1
---
2
2
major : 5
3
3
minor : 11
4
- patch : 5
4
+ patch : 6
5
5
entry : runtimepy
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"
4
4
5
5
[project ]
6
6
name = " runtimepy"
7
- version = " 5.11.5 "
7
+ version = " 5.11.6 "
8
8
description = " A framework for implementing Python services."
9
9
readme = " README.md"
10
10
requires-python = " >=3.12"
Original file line number Diff line number Diff line change 1
1
# =====================================
2
2
# generator=datazen
3
3
# version=3.2.0
4
- # hash=ac222b5cb6e347a1d218135c6b5b25f1
4
+ # hash=ed6e0aad96cfd1bee734d433a5c2cbf0
5
5
# =====================================
6
6
7
7
"""
10
10
11
11
DESCRIPTION = "A framework for implementing Python services."
12
12
PKG_NAME = "runtimepy"
13
- VERSION = "5.11.5 "
13
+ VERSION = "5.11.6 "
14
14
15
15
# runtimepy-specific content.
16
16
METRICS_NAME = "metrics"
Original file line number Diff line number Diff line change 46
46
PrimitiveTypes : dict [str , AnyPrimitiveType ] = {
47
47
# Integer types.
48
48
Int8 .name : Int8 ,
49
+ "int8_t" : Int8 ,
49
50
Int16 .name : Int16 ,
51
+ "int16_t" : Int16 ,
50
52
Int32 .name : Int32 ,
53
+ "int32_t" : Int32 ,
51
54
Int64 .name : Int64 ,
55
+ "int64_t" : Int64 ,
52
56
Uint8 .name : Uint8 ,
57
+ "uint8_t" : Uint8 ,
53
58
Uint16 .name : Uint16 ,
59
+ "uint16_t" : Uint16 ,
54
60
Uint32 .name : Uint32 ,
61
+ "uint32_t" : Uint32 ,
55
62
Uint64 .name : Uint64 ,
63
+ "uint64_t" : Uint64 ,
56
64
# Floating-point types.
57
65
Half .name : Half ,
66
+ "std::float16_t" : Half ,
58
67
Float .name : Float ,
68
+ "std::float32_t" : Float ,
59
69
Double .name : Double ,
70
+ "std::float64_t" : Double ,
60
71
# Boolean type.
61
72
Bool .name : Bool ,
73
+ "boolean" : Bool ,
62
74
}
63
75
64
76
PrimitiveTypelike = _Union [str , AnyPrimitiveType ]
You can’t perform that action at this time.
0 commit comments