@@ -27,6 +27,7 @@ classifiers = [
2727 " Programming Language :: Python :: 3.11" ,
2828 " Programming Language :: Python :: 3.12" ,
2929 " Programming Language :: Python :: 3.13" ,
30+ " Programming Language :: Python :: 3.14" ,
3031 " Programming Language :: Python :: Implementation :: CPython" ,
3132 " Programming Language :: Python :: Implementation :: PyPy" ,
3233 " Topic :: Internet :: WWW/HTTP" ,
@@ -60,7 +61,7 @@ dev = [
6061 " types-click==7.1.8" ,
6162 " types-pyyaml==6.0.12.20250402" ,
6263 " trustme==1.2.1" ,
63- " cryptography= =44.0.3" ,
64+ " cryptography> =44.0.3" ,
6465 " coverage==7.8.0" ,
6566 " coverage-conditional-plugin==0.9.0" ,
6667 " coverage-enable-subprocess==1.0" ,
@@ -132,6 +133,8 @@ filterwarnings = [
132133 " ignore: websockets.legacy is deprecated.*:DeprecationWarning" ,
133134 " ignore: websockets.server.WebSocketServerProtocol is deprecated.*:DeprecationWarning" ,
134135 " ignore: websockets.client.connect is deprecated.*:DeprecationWarning" ,
136+ # httptools in Python 3.14t needs the `PYTHON_GIL=0` environment variable, or raises a RuntimeWarning.
137+ " ignore: The global interpreter lock (GIL)*:RuntimeWarning"
135138]
136139
137140[tool .coverage .run ]
0 commit comments