Skip to content

Commit

Permalink
Drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
friedkeenan committed Jan 2, 2025
1 parent feb0507 commit 44e030d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- name: Checkout the repository
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ name = "pak"
version = "1.1.0"
description = "A general purpose packet marshaling library"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {file = "LICENSE"}

authors = [
{name = "friedkeenan"},
]

classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
3 changes: 1 addition & 2 deletions tests/test_packets/test_packet.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,7 @@ class Header(pak.Packet.Header):
# protocol from Python 3.9 to Python 3.12,
# after being deprecated in Python 3.11.
#
# TODO: Change condition when Python 3.8 support is dropped.
# TODO: Remove entirely when Python 3.12 support is dropped.
# TODO: Remove when Python 3.12 support is dropped.
if sys.version_info.minor in range(9, 13):
class TestClassPropertyId(pak.Packet):
class Header(pak.Packet.Header):
Expand Down

0 comments on commit 44e030d

Please sign in to comment.