-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed leading zero issue in decimal number for lex token interpreter, e.g. +012345 is now interpreted correctly. - Added support for UTF-8, UTF-16, UTF-32, ISO encoding for A2L input files. - Fixed handling of empty blocks inside IF_DATA, e.g. "/begin TEST_X /end TEST_X" (allowing and saving to AST now). Refactor: - Moved a2lparser/a2lparser.py to a2lparser/main.py - Moved a2lparser/a2l/parser.py to a2lparser/a2lparser.py - Moved a2lparser/a2l/parsing_exception.py to a2lparser/a2lparser_exception.py - Moved Loguru format initialization to A2LParser constructor. - Changed PyPI and build workflow names
- Loading branch information
Showing
24 changed files
with
651 additions
and
367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pypi | ||
name: build | ||
|
||
# Controls when the action will run. | ||
on: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI | ||
name: pypi publish | ||
|
||
on: push | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.