Skip to content

Commit

Permalink
client: package: support python3.13 and remove python3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Oct 20, 2024
1 parent a535645 commit 7bea78d
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-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12" ]
python-version: [ 3.9, "3.10", "3.11", "3.12", "3.13" ]
os: [ macos-latest ]

steps:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "hilda"
description = "LLDB wrapped and empowered by iPython's features"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = ["python", "debugger", "lldb", "ipython", "ios", "debug"]
authors = [
Expand All @@ -20,11 +20,11 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["dependencies", "version"]
Expand Down

0 comments on commit 7bea78d

Please sign in to comment.