Skip to content

Commit

Permalink
fix(plc4py): add 3.8 to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
hutcheb committed Aug 30, 2024
1 parent 7fc2b33 commit 07627b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
test:
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.8', '3.10', '3.11', '3.12']
os: [ ubuntu-latest, macos-latest, windows-latest ]
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import unittest
from abc import ABC, abstractmethod
from dataclasses import dataclass, field
from typing import List, Iterator, Any
from typing import List, Iterator, Any, Tuple
from xml.etree import ElementTree

from xsdata.formats.dataclass.parsers import XmlParser
Expand All @@ -48,7 +48,7 @@ class XmlTestSuiteLoader(unittest.TestLoader, ABC):
#

test_suite_document: str
test_suite_document_xml: Iterator[tuple[str, Any]] = field(init=False)
test_suite_document_xml: Iterator[Tuple[str, Any]] = field(init=False)

def __post_init__(self) -> None:
# ElementTree.register_namespace('test', 'https://plc4x.apache.org/schemas/driver-testsuite.xsd')
Expand Down

0 comments on commit 07627b8

Please sign in to comment.