Skip to content

Commit

Permalink
Merge pull request #48 from miek/drop-py3.8
Browse files Browse the repository at this point in the history
Update Python versions: drop 3.8, add 3.13 to CI
  • Loading branch information
mossmann authored Dec 5, 2024
2 parents 7374513 + 24fcbf4 commit b0c9d45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
max-parallel: 5
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'

name: test (${{ matrix.python-version }})
steps:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ name = "usb-protocol"
description = "Python library providing utilities, data structures, constants, parsers, and tools for working with the USB protocol."
license = { text = "BSD" }
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
authors = [
{name = "Great Scott Gadgets", email = "[email protected]"},
]

classifiers = [
"Development Status :: 4 - Beta",
"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",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
Expand Down

0 comments on commit b0c9d45

Please sign in to comment.