twiddle, nudge version number

This commit is contained in:
2025-12-18 10:18:04 -08:00
parent 242f2e08d5
commit a8f35a9ffc
3 changed files with 4 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ The `pycmx` package parses a CMX 3600 EDL and its most most common variations.
read. Event number field and source name field sizes are determined read. Event number field and source name field sizes are determined
dynamically for each statement for a high level of compliance at the expense dynamically for each statement for a high level of compliance at the expense
of strictness. of strictness.
* An more relaxed "tolerant" mode allows parsing of an EDL file where columns * A more relaxed "tolerant" mode allows parsing of an EDL file where columns
use non-standard widths. use non-standard widths.
* Preserves relationship between events and individual edits/clips. * Preserves relationship between events and individual edits/clips.
* Remark or comment fields with common recognized forms are read and * Remark or comment fields with common recognized forms are read and

View File

@@ -60,9 +60,8 @@ def _parse_cmx3600_line(line: str, line_number: int,
source_field_len = len(line) - (event_field_len + 65) source_field_len = len(line) - (event_field_len + 65)
try: try:
return _parse_columns_for_standard_form(line, event_field_len, return _parse_columns_for_standard_form(
source_field_len, line, event_field_len, source_field_len, line_number)
line_number)
except EventFormError: except EventFormError:
if tolerant: if tolerant:

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "pycmx" name = "pycmx"
version = "1.4.0" version = "1.5.0"
description = "Python CMX 3600 Edit Decision List Parser" description = "Python CMX 3600 Edit Decision List Parser"
authors = ["Jamie Hardt <jamiehardt@me.com>"] authors = ["Jamie Hardt <jamiehardt@me.com>"]
license = "MIT" license = "MIT"