Skip to content

Commit

Permalink
Merge pull request #161 from robamu-org/python-3.13-fix
Browse files Browse the repository at this point in the history
python 3.13 fix
  • Loading branch information
robamu authored Jan 15, 2025
2 parents 1e18086 + fb536bd commit a243257
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Starting from v4.0.0, this project adheres to [Semantic Versioning](http://semve

# [unreleased]

- Drop support for EOL Python 3.8. Minimum supported Python version is now 3.9

# [v8.0.3] 2024-11-08

- Bump allowed `spacepackets` and `cfdp` range
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "tmtccmd"
description = "TMTC Commander Core"
readme = "README.md"
version = "8.0.3"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {text = "Apache-2.0 or MIT" }
authors = [
{name = "Robin Mueller", email = "robin.mueller.m@gmail.com"}
Expand Down
2 changes: 1 addition & 1 deletion tmtccmd/com/tcpip_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import struct
import enum
from dataclasses import dataclass
from enum import auto
from typing import Tuple

from tmtccmd.util.json import check_json_file, JsonKeyNames
Expand Down Expand Up @@ -34,7 +35,6 @@ class TcpIpType(enum.Enum):


class TcpIpConfigIds(enum.Enum):
from enum import auto

SEND_ADDRESS = auto()
RECV_ADDRESS = auto()
Expand Down

0 comments on commit a243257

Please sign in to comment.