Skip to content

Drop Python 3.9 support, add 3.14 #135

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 11, 2025
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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ jobs:
- "windows-app"
- "iOS"
- "android"
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
exclude:
# Android doesn't have 3.14 support packages yet
- python-version: "3.14"
backend: "android"

include:
- runs-on: ubuntu-latest
- pre-command:
Expand Down
8 changes: 4 additions & 4 deletions tests/test_thirdparty.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def test_cryptography():

cert = x509.load_pem_x509_certificate(cert_pem, default_backend())
domain = cert.subject.get_attributes_for_oid(NameOID.COMMON_NAME)[0].value
assert "www.android.com" == domain
assert domain == "www.android.com"


@xfail_if_not_installed("pyspamsum")
Expand Down Expand Up @@ -177,7 +177,7 @@ def test_numpy():
from numpy import array

# Numpy is the thousand pound gorilla packaging test.
assert [4, 7] == (array([1, 2]) + array([3, 5])).tolist()
assert (array([1, 2]) + array([3, 5])).tolist() == [4, 7]


@xfail_if_not_installed("pandas")
Expand All @@ -196,6 +196,6 @@ def test_pandas():
else:
kwargs = {"lineterminator": "\n"}

assert (",Letter,Number\n0,alpha,1\n1,bravo,2\n2,charlie,3\n") == df.to_csv(
**kwargs
assert df.to_csv(**kwargs) == (
",Letter,Number\n0,alpha,1\n1,bravo,2\n2,charlie,3\n"
)
Loading