Skip to content

Commit

Permalink
Mdf3 complex reading bug fix (#16)
Browse files Browse the repository at this point in the history
* add python 3.12 and remove 3.8

* tick patch version

* updated readme

* fixed doc generation warnings

* added anyhow error handling in python interface

* use ArrayFormater from Arrow crate to display content of array

* removed filtering  of empty data, can happen at initialisation

* merged linear and rational conversion from conversion4 only and reused in conversion3

* forgot default value assignment in case of value to text  conversion

* clippy

* remove generated parquet file during test

* add debuggging view, more robust in case of non UTF8 characters

---------

Co-authored-by: «ratal» <«[email protected]»>
  • Loading branch information
ratal and «ratal» authored Apr 25, 2024
1 parent f48c2d1 commit f893cb3
Show file tree
Hide file tree
Showing 14 changed files with 259 additions and 367 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/py-mac-aarch64-apple-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: ["macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: [ "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Install latest Rust nightly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/py-release-manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10' , "3.11"]
python-version: [ '3.9', '3.10' , "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/py-release-windows-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: ["macos-latest", "windows-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Install latest Rust nightly
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
}
},
"args": [
"/home/ratal/workspace/mdfreader/mdfreader/tests/MDF4/ASAM_COMMON_MDF_V4-1-0/Base_Standard/Examples/Simple/test.mf4"
"/home/ratal/workspace/mdfreader/mdfreader/tests/mdf3/TGT.dat"
],
"cwd": "${workspaceFolder}"
},
Expand Down
Loading

0 comments on commit f893cb3

Please sign in to comment.