pyxcp 0.22.32__cp312-cp312-win_amd64.whl → 0.22.34__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyxcp might be problematic. Click here for more details.

pyxcp/__init__.py CHANGED
@@ -17,4 +17,4 @@ tb_install(show_locals=True, max_frames=3) # Install custom exception handler.
17
17
 
18
18
  # if you update this manually, do not forget to update
19
19
  # .bumpversion.cfg and pyproject.toml.
20
- __version__ = "0.22.32"
20
+ __version__ = "0.22.34"
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,4 @@
1
- """Convert pyXCPs .xmraw files to common data formats.
2
- """
1
+ """Convert pyXCPs .xmraw files to common data formats."""
3
2
 
4
3
  import csv
5
4
  import logging
@@ -318,8 +317,7 @@ class MdfConverter(CollectRows, XcpLogFileDecoder):
318
317
  time_flags=FLAG_HD_TIME_OFFSET_VALID,
319
318
  )
320
319
  hdr.comment = f"""<HDcomment><TX>Timezone: {timestamp_info.timezone}</TX></HDcomment>""" # Test-Comment.
321
- mdf4 = MDF(version="4.10")
322
- mdf4.header = hdr
320
+ mdf4 = MDF(version="4.10", header=hdr)
323
321
  for idx, arr in enumerate(self.tables):
324
322
  signals = []
325
323
  timestamps = arr.timestamp0
@@ -369,7 +367,8 @@ class SqliteConverter(XcpLogFileDecoder):
369
367
  self.create_table(sc)
370
368
  self.logger.info(f"Creating table {sc.name!r}.")
371
369
  self.insert_stmt[sc.name] = (
372
- f"""INSERT INTO {sc.name}({', '.join(['timestamp0', 'timestamp1'] + [r.name for r in sc.arr])}) VALUES({', '.join(["?" for _ in range(len(sc.arr) + 2)])})"""
370
+ f"""INSERT INTO {sc.name}({', '.join(['timestamp0', 'timestamp1'] + [r.name for r in sc.arr])})"""
371
+ f""" VALUES({', '.join(["?" for _ in range(len(sc.arr) + 2)])})"""
373
372
  )
374
373
 
375
374
  def on_finalize(self) -> None:
Binary file
Binary file
Binary file
@@ -1,23 +1,23 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyxcp
3
- Version: 0.22.32
3
+ Version: 0.22.34
4
4
  Summary: Universal Calibration Protocol for Python
5
5
  License: LGPLv3
6
6
  Keywords: automotive,ecu,xcp,asam,autosar
7
7
  Author: Christoph Schueler
8
8
  Author-email: cpu.gems@googlemail.com
9
- Requires-Python: >=3.8.1,<4.0.0
9
+ Requires-Python: >=3.10,<4.0
10
10
  Classifier: Development Status :: 5 - Production/Stable
11
11
  Classifier: Intended Audience :: Developers
12
12
  Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
13
13
  Classifier: License :: Other/Proprietary License
14
14
  Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.9
16
15
  Classifier: Programming Language :: Python :: 3.10
17
16
  Classifier: Programming Language :: Python :: 3.11
18
17
  Classifier: Programming Language :: Python :: 3.12
19
18
  Classifier: Programming Language :: Python :: 3.13
20
19
  Classifier: Programming Language :: Python :: 3.8
20
+ Classifier: Programming Language :: Python :: 3.9
21
21
  Classifier: Topic :: Scientific/Engineering
22
22
  Classifier: Topic :: Software Development
23
23
  Requires-Dist: bandit (>=1.7.8,<2.0.0)
@@ -27,11 +27,11 @@ Requires-Dist: line-profiler-pycharm (>=1.1.0,<2.0.0)
27
27
  Requires-Dist: mako (>=1.2.4,<2.0.0)
28
28
  Requires-Dist: pyserial (>=3.5,<4.0)
29
29
  Requires-Dist: python-can (>=4.2.2,<5.0.0)
30
- Requires-Dist: pytz (>=2024.1,<2025.0)
30
+ Requires-Dist: pytz (>=2025.2,<2026.0)
31
31
  Requires-Dist: pyusb (>=1.2.1,<2.0.0)
32
- Requires-Dist: rich (>=13.6.0,<14.0.0)
32
+ Requires-Dist: rich (>=14.0.0,<15.0.0)
33
33
  Requires-Dist: toml (>=0.10.2,<0.11.0)
34
- Requires-Dist: tomlkit (>=0.12.5,<0.13.0)
34
+ Requires-Dist: tomlkit (>=0.13.3,<0.14.0)
35
35
  Requires-Dist: traitlets (<=5.11.2)
36
36
  Requires-Dist: uptime (>=3.0.1,<4.0.0)
37
37
  Project-URL: Homepage, https://github.com/christoph2/pyxcp
@@ -1,4 +1,4 @@
1
- pyxcp/__init__.py,sha256=hwoOIuzcoXDPyoR6x5NWdxjN7nc76IUQbw6JbWX64Pw,548
1
+ pyxcp/__init__.py,sha256=09oAKcV-9xwWVtsoNOfZm6fy7G7IbHcs7L7jm270W2Y,548
2
2
  pyxcp/aml/EtasCANMonitoring.a2l,sha256=EJYwe3Z3H24vyWAa6lUgcdKnQY8pwFxjyCN6ZU1ST8w,1509
3
3
  pyxcp/aml/EtasCANMonitoring.aml,sha256=xl0DdyeiIaLW0mmmJNAyJS0CQdOLSxt9dxfgrdSlU8Y,2405
4
4
  pyxcp/aml/ifdata_CAN.a2l,sha256=NCUnCUEEgRbZYSLGtUGwL2e7zJ8hrp0SbmLHGv8uY58,612
@@ -24,11 +24,9 @@ pyxcp/constants.py,sha256=9yGfujC0ImTYQWfn41wyw8pluJTSrhMGWIVeIZTgsLg,1160
24
24
  pyxcp/cpp_ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  pyxcp/cpp_ext/bin.hpp,sha256=PwJloZek21la-RBSda2Hc0u_6gID0sfTduPeplaAyR4,2561
26
26
  pyxcp/cpp_ext/blockmem.hpp,sha256=ysaJwmTWGTfE54Outk3gJYOfAVFd_QaonBMtXLcXwCc,1242
27
- pyxcp/cpp_ext/cpp_ext.cp310-win_amd64.pyd,sha256=wpqGnREltZa2sVCDBa6wZ4pjKcROxpYMn34_Xgq5M3k,290304
28
- pyxcp/cpp_ext/cpp_ext.cp311-win_amd64.pyd,sha256=bADj0Wkv9jkt1AnK_ZBCX49Z5w1FVUv59IRBQJFXtR0,292864
29
- pyxcp/cpp_ext/cpp_ext.cp312-win_amd64.pyd,sha256=wmuz1lHcleB13xROi29vXf7WZH3_PeKQQNZrxFiPlvY,298496
30
- pyxcp/cpp_ext/cpp_ext.cp38-win_amd64.pyd,sha256=txhdaBwmuLyZdKdXoX4zQaMFpwfyYiIPtnQne5ETWXk,289792
31
- pyxcp/cpp_ext/cpp_ext.cp39-win_amd64.pyd,sha256=kHhe41dU5nfexKIOT-rGhPFJo0zCAfTcd12iPUp5Arg,270848
27
+ pyxcp/cpp_ext/cpp_ext.cp310-win_amd64.pyd,sha256=NZXoyV2cwEujIfqTW2tAVcX0P01Ep6-nI2u1Q9zWtg4,285184
28
+ pyxcp/cpp_ext/cpp_ext.cp311-win_amd64.pyd,sha256=tXRqsAukH34pujwp9PShYLD31R6QmsX933aazEB5m8Y,286720
29
+ pyxcp/cpp_ext/cpp_ext.cp312-win_amd64.pyd,sha256=7RNDmGaWv60fvwQNoQKztLBa-qI-nHl-8XU5DSFd-FY,291840
32
30
  pyxcp/cpp_ext/daqlist.hpp,sha256=g2hlxgoQorAGKHedZFZ0c2FQh1APMIA9sVB6M6hD_n8,7277
33
31
  pyxcp/cpp_ext/event.hpp,sha256=Z-1yxsEKsr81NnLVEWJ2ANA8FV7YsM7EbNxaw-elheE,1200
34
32
  pyxcp/cpp_ext/extension_wrapper.cpp,sha256=xFs3IcrvHPHA82-n11WPzt8HATGqcks02p84SjQ2BKM,4855
@@ -40,11 +38,9 @@ pyxcp/daq_stim/optimize/__init__.py,sha256=FUWK0GkNpNT-sUlhibp7xa2aSYpm6Flh5yA2w
40
38
  pyxcp/daq_stim/optimize/binpacking.py,sha256=Iltho5diKlJG-ltbmx053U2vOFRlCISolXK61T14l_I,1257
41
39
  pyxcp/daq_stim/scheduler.cpp,sha256=a7VK7kP2Hs8yMlcDAkXwJ0bH88lr_yz156sphcHS7Z4,715
42
40
  pyxcp/daq_stim/scheduler.hpp,sha256=U_6tUbebmzX5vVZS0EFSgTaPsyxMg6yRXHG_aPWA0x4,1884
43
- pyxcp/daq_stim/stim.cp310-win_amd64.pyd,sha256=0i8YvlLN2kvtCGG5nFM3v-8EDb_EvCA1_jsZNY2W8KM,198656
44
- pyxcp/daq_stim/stim.cp311-win_amd64.pyd,sha256=L7B95f6dbJHom3ZwxrPj6_0ZURwB33YdOqgpHdr0X_k,201216
45
- pyxcp/daq_stim/stim.cp312-win_amd64.pyd,sha256=FDNqTpgzrK94U1yaVgU0tSBm2Lomvd74rHqlWFPFIFs,204800
46
- pyxcp/daq_stim/stim.cp38-win_amd64.pyd,sha256=B9n7Ux6n2IBqUxgw7Qsow-HbCJuA5td1RVTMOzlyq8E,198656
47
- pyxcp/daq_stim/stim.cp39-win_amd64.pyd,sha256=hYelHNMZIQ5X7vvm-r06-bmPpRmCf4ii46NQP9jV0as,192512
41
+ pyxcp/daq_stim/stim.cp310-win_amd64.pyd,sha256=H94qsRryFW2jK6Uy48Hmainy0W3gzx7xzYORTz3yuVA,204288
42
+ pyxcp/daq_stim/stim.cp311-win_amd64.pyd,sha256=5-N0iA2IUxhEbTEVVm1CjwtdJDfXgbQLeFNOukuZ1e0,205824
43
+ pyxcp/daq_stim/stim.cp312-win_amd64.pyd,sha256=-jGq3h1givq-wpwHwe4N1qRvam2ZifpAchHMzesUMgA,209920
48
44
  pyxcp/daq_stim/stim.cpp,sha256=F2OG67W4KKwTTiUCxm-9egIv3TLFdOkRunX6xf7YOtc,177
49
45
  pyxcp/daq_stim/stim.hpp,sha256=U-uInRrA6OCdMl1l1SWbQ_KEPpnNYrWut924IvbW6R0,18508
50
46
  pyxcp/daq_stim/stim_wrapper.cpp,sha256=iT2yxJ3LRG7HoYC1bwhM3tCAxF9X_HHierBNsLRmTJg,1995
@@ -77,7 +73,7 @@ pyxcp/recorder/build_clang.sh,sha256=zmU3nZxaNH1pxGWMyQ-S541TuVqxS00p3iPR9NUP4Ec
77
73
  pyxcp/recorder/build_gcc.cmd,sha256=zj732DdvqDzGAFg7dvF83DUpf8Qf6rQ0cqEaID15Z80,238
78
74
  pyxcp/recorder/build_gcc.sh,sha256=nCSh7G8xtxWtDNrMqNUxcjnm_CFpMeduIF0X-RSJtHA,211
79
75
  pyxcp/recorder/build_gcc_arm.sh,sha256=jEo6Mgt_aVDL3nHtffecXOrN6gRsEoaA3S4pPrAzpCE,240
80
- pyxcp/recorder/converter/__init__.py,sha256=GBaJNTw5lt3030EUZZ7t6CiXs_r2xTqmMUbUgA-2CeM,14898
76
+ pyxcp/recorder/converter/__init__.py,sha256=9wsoWJE-PwjsUpQqMT2KUBqa_qdAiX9-cktf6Lkm_xU,14902
81
77
  pyxcp/recorder/lz4.c,sha256=rOy3JE2SsOXvJ8a9pgGEfGpbDJnJR03dSVej0CwPmjg,120974
82
78
  pyxcp/recorder/lz4.h,sha256=Kz_2V6kvOunNHoPl9-EqxWDVCvYXbU0J-pkSnCeXubs,46483
83
79
  pyxcp/recorder/lz4hc.c,sha256=E56iE5CQ6fhQIVi3qNpxiIIP2sTGeC80JtVPyhidV6Q,88870
@@ -86,11 +82,9 @@ pyxcp/recorder/mio.hpp,sha256=5ASJLKSEykH0deAQD5uak-_yAgd5p2n8t06315GSGrg,63346
86
82
  pyxcp/recorder/reader.hpp,sha256=rr9XZ_ciL6eF2_xEqyt9XYNqTIze9ytAsnf8uYukO9U,5201
87
83
  pyxcp/recorder/reco.py,sha256=6N6FIwfCEVMpi5dr3eUOQa1lowcg2LCnS_sy_-b-UiQ,8725
88
84
  pyxcp/recorder/recorder.rst,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
- pyxcp/recorder/rekorder.cp310-win_amd64.pyd,sha256=ZECRUMBr45Om_JUcmm8I8yS4iseO-VdjFNjiuluO2mk,386560
90
- pyxcp/recorder/rekorder.cp311-win_amd64.pyd,sha256=8DREAmpzVG9HacsdXPK7rHOXGd9WQu87xjHpqHdrutc,388608
91
- pyxcp/recorder/rekorder.cp312-win_amd64.pyd,sha256=x6FzQTTbhn5NPF4XGtsK4lWtUgyZDmUG4Fp8bKJ6QeU,394752
92
- pyxcp/recorder/rekorder.cp38-win_amd64.pyd,sha256=MCVlJIxcYnKDHrBpM-h_FBSXcFTAuvXFdqWVo1iwoyc,386048
93
- pyxcp/recorder/rekorder.cp39-win_amd64.pyd,sha256=cvyJyY_uSfsbqwUS6Z0cz5MC8mDH7YP0ADDODXHI9jk,372736
85
+ pyxcp/recorder/rekorder.cp310-win_amd64.pyd,sha256=sj-_OgXRKkMqsLTucycI4EieUDvwDHf8nElr9ZY11J8,385536
86
+ pyxcp/recorder/rekorder.cp311-win_amd64.pyd,sha256=D1Tg-eguWgluCRuYowYjUdLtnKfQpFfBmDkKMUT06lQ,387584
87
+ pyxcp/recorder/rekorder.cp312-win_amd64.pyd,sha256=Q0dQKp0lYhAuGMLBXql1mqoh_ndSpAj9f_odcSIM91w,392192
94
88
  pyxcp/recorder/rekorder.cpp,sha256=U0LMyk8pZXx9emgS_WPVthvn_9IpgE7JGrh4kg-8CX4,1900
95
89
  pyxcp/recorder/rekorder.hpp,sha256=sWvRch9bVt6mmgrFHp5mwWhap7HoFG4geeb7UqEIzio,7638
96
90
  pyxcp/recorder/setup.py,sha256=_99XFPQAd5V4LcJaSGJwdnbxgxJ7kl8DEXfHsnKO1Yg,998
@@ -130,8 +124,8 @@ pyxcp/types.py,sha256=mjp3FhsTTbS3D5VuC-dfdbMql0lJwEfbZjf8a2pHi1o,26158
130
124
  pyxcp/utils.py,sha256=gVIhPSvZs-y4o6QB35iJQd0VK_Z9sa3UtCDI3dYQeyo,3457
131
125
  pyxcp/vector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
126
  pyxcp/vector/map.py,sha256=7Gnhvr79geMeqqGVIJPxODXGwABdNDinnqzhpooN5TE,2306
133
- pyxcp-0.22.32.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
134
- pyxcp-0.22.32.dist-info/LICENSE,sha256=fTqV5eBpeAZO0_jit8j4Ref9ikBSlHJ8xwj5TLg7gFk,7817
135
- pyxcp-0.22.32.dist-info/METADATA,sha256=9Q4jsOBTYhnEGX83synR2gbIENKjrT-lcAEwNgIJwXI,4088
136
- pyxcp-0.22.32.dist-info/WHEEL,sha256=nlDnkU5ewK6Tucq-8PtwvODkataHPbP8zOKzhf1Z7u4,98
137
- pyxcp-0.22.32.dist-info/RECORD,,
127
+ pyxcp-0.22.34.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
128
+ pyxcp-0.22.34.dist-info/LICENSE,sha256=fTqV5eBpeAZO0_jit8j4Ref9ikBSlHJ8xwj5TLg7gFk,7817
129
+ pyxcp-0.22.34.dist-info/METADATA,sha256=P5fVBGrcQlz5CQ2IQOdA0nhGH7TDU_w8QA_8aA0ycss,4085
130
+ pyxcp-0.22.34.dist-info/WHEEL,sha256=nlDnkU5ewK6Tucq-8PtwvODkataHPbP8zOKzhf1Z7u4,98
131
+ pyxcp-0.22.34.dist-info/RECORD,,
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file