diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index e68199e..eaed021 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -6,7 +6,7 @@ jobs: build-manylinux: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11"] runs-on: ubuntu-latest container: ghcr.io/klebert-engineering/manylinux-cpp17-py${{ matrix.python-version }}-x86_64:2024.1 env: @@ -46,7 +46,7 @@ jobs: strategy: matrix: os: [macos-13, windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2 with: diff --git a/libs/zswag/reflect.py b/libs/zswag/reflect.py index bf5ffa9..471617d 100644 --- a/libs/zswag/reflect.py +++ b/libs/zswag/reflect.py @@ -176,7 +176,7 @@ def str_to_bytes(s: str, fmt: OAParamFormat) -> bytes: # Convert a single passed parameter value to it's correct type def parse_param_value(param: OAParam, target_type: Type, value: str) -> Any: - # Check if its an enum ... + # Check if it's an enum ... if issubclass(target_type, Enum): return target_type(parse_param_value(param, int, value)) # Check if the parameter format is native string conversion