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 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 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",