Skip to content
Open
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
11 changes: 8 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,21 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "pypy-3.9"
- "3.14"
- "3.14t"
- "pypy-3.10"
- "pypy-3.11"
urllib3-requirement:
- "urllib3>=2"
- "urllib3<2"

exclude:
- python-version: "3.9"
urllib3-requirement: "urllib3>=2"
- python-version: "pypy-3.9"
urllib3-requirement: "urllib3>=2"
- python-version: "pypy-3.10"
urllib3-requirement: "urllib3>=2"
- python-version: "pypy-3.11"
urllib3-requirement: "urllib3>=2"

steps:
- uses: actions/checkout@v5
Expand All @@ -53,6 +55,9 @@ jobs:
uv pip install --system codecov '.[tests]' '${{ matrix.urllib3-requirement }}'
uv pip check

- if: startsWith(matrix.python-version, '3.14')
run: uv pip install --system cryptography>=46.0.3

- name: Allow creation of user namespaces (e.g. to the unshare command)
run: |
# .. so that we don't get error:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ def find_version(*file_paths):
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Free Threading",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
Expand Down
Loading