From 04b02db0109ad6f2b5906b85cc6e047b5e5b5bb3 Mon Sep 17 00:00:00 2001 From: Simon Berger Date: Sat, 26 Apr 2025 23:23:32 +0000 Subject: [PATCH 1/3] Fix pyproject license deprecation warnings --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 964835c..e5606cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", @@ -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", From bbc945d5e8010accb6ca4f8468cd54a6ad476e15 Mon Sep 17 00:00:00 2001 From: Simon Berger Date: Sun, 27 Apr 2025 11:24:57 +0000 Subject: [PATCH 2/3] Drop Python 3.8 --- .github/workflows/pythonpackage.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 417c93a..6a5187a 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -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 From 297df7b1c962e24cc7d4776ac6216b5d0ff5ab5e Mon Sep 17 00:00:00 2001 From: Simon Berger Date: Sun, 27 Apr 2025 11:25:21 +0000 Subject: [PATCH 3/3] Use Python 3.11 for cibuildwheel --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3c66ead..5f2039d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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