Skip to content

Commit 093f9ca

Browse files
committed
Lint Python code with ruff
1 parent d5ba702 commit 093f9ca

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
- "3.11"
2121
- "3.12"
2222
- "3.13"
23+
- "3.14"
24+
- "3.14t"
2325
- "pypy-3.11"
2426

2527
steps:
@@ -39,6 +41,9 @@ jobs:
3941
uv pip install --system codecov '.[tests]'
4042
uv pip check
4143
44+
- if: startsWith(matrix.python-version, '3.14')
45+
run: uv pip install --system cryptography>=46.0.3
46+
4247
- name: Allow creation of user namespaces (e.g. to the unshare command)
4348
run: |
4449
# .. so that we don't get error:

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def find_version(*file_paths):
5050
"requests>=2.22.0",
5151
"tornado",
5252
"urllib3",
53-
"werkzeug==2.0.3",
53+
"Werkzeug==3.1.3",
5454
],
5555
}
5656

@@ -79,6 +79,8 @@ def find_version(*file_paths):
7979
"Programming Language :: Python :: 3.11",
8080
"Programming Language :: Python :: 3.12",
8181
"Programming Language :: Python :: 3.13",
82+
"Programming Language :: Python :: 3.14",
83+
"Programming Language :: Python :: Free Threading",
8284
"Programming Language :: Python :: 3 :: Only",
8385
"Programming Language :: Python :: Implementation :: CPython",
8486
"Programming Language :: Python :: Implementation :: PyPy",

0 commit comments

Comments
 (0)