Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
fail-fast: false
matrix:
python-version: [
'3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.8', 'pypy-3.9'
'3.9', '3.10', '3.11', '3.12', '3.13',
'pypy-3.9', 'pypy-3.10', 'pypy-3.11'
]
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Used to host cibuildwheel
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Install cibuildwheel
run: python -m pip install cibuildwheel
Expand All @@ -43,7 +43,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Build sdist
run: pipx run build --sdist
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and C bit field structs represented as Python \
byte strings."""
readme = "README.rst"
requires-python = ">=3.7"
license = { text = "MIT" }
license = "MIT"
keywords = [
"bit field",
"bit parsing",
Expand All @@ -22,7 +22,6 @@ authors = [
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
Expand Down