commit - a72e0bf6583581a186af2109977e45ecf4c11d83
commit + a107e66a92bfcb253e3bd002d87c33927b126d39
blob - bc92ed0f01059ee1be41fb163ae4f58428463b04
blob + 93ac6d6a31f7190a2a9253b542b0b6c5d6a69c0e
--- .github/workflows/pythontest.yml
+++ .github/workflows/pythontest.yml
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- ["3.8", "3.9", "3.10", "3.11", "3.12"]
+ ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
fail-fast: false
steps:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
+ allow-prereleases: true
- name: Install native dependencies (Ubuntu)
run: sudo apt-get update && sudo apt-get install -y libgpgme-dev libgpg-error-dev
if: "matrix.os == 'ubuntu-latest'"
blob - c67ae902c3c2cda3a909cb161e27f37da256951e
blob + 0dfec43d0458521627f990ff9abd0a40692cde9e
--- pyproject.toml
+++ pyproject.toml
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
+ "Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: POSIX",
[tool.cibuildwheel.macos]
archs = ["auto", "universal2", "x86_64", "arm64"]
before-all = "rustup target add x86_64-apple-darwin aarch64-apple-darwin"
-skip = "cp38-macosx_arm64 cp38-macosx_universal2 cp39-macosx_x86_64 cp39-macosx_universal2 cp310-macosx_x86_64 cp310-macosx_universal2 cp311-macosx_x86_64 cp311-macosx_universal2 cp311-macosx_universal2 cp312-macosx_x86_64 cp312-macosx_universal2"
+skip = """\
+ cp38-macosx_arm64 cp38-macosx_universal2 \
+ cp39-macosx_x86_64 cp39-macosx_universal2 \
+ cp310-macosx_x86_64 cp310-macosx_universal2 \
+ cp311-macosx_x86_64 cp311-macosx_universal2 \
+ cp312-macosx_x86_64 cp312-macosx_universal2 \
+ cp313-macosx_x86_64 cp313-macosx_universal2 \
+ """