File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ development source code and as such may not be routinely kept up to date.
2727* Updated the dependency list to explicitly include ` boto3 ` , used for various
2828 commands.
2929 ([ #499 ] ( https://github.com/nextstrain/cli/pull/499 ) )
30+ * Suppress warning from cryptography about deprecated Python 3.8 support
31+ ([ #523 ] ( https://github.com/nextstrain/cli/pull/523 ) )
3032
3133# 10.5.0 (25 March 2026)
3234
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ development source code and as such may not be routinely kept up to date.
3232* Updated the dependency list to explicitly include ` boto3 ` , used for various
3333 commands.
3434 ([ #499 ] ( https://github.com/nextstrain/cli/pull/499 ) )
35+ * Suppress warning from cryptography about deprecated Python 3.8 support
36+ ([ #523 ] ( https://github.com/nextstrain/cli/pull/523 ) )
3537
3638(v10-5-0)=
3739## 10.5.0 (25 March 2026)
Original file line number Diff line number Diff line change 22Authentication sessions.
33"""
44import boto3
5- import jwt
6- import jwt .exceptions
5+ import warnings
6+
7+ # Ignore noisy warning from cryptography 47.0.0 about deprecated support for Python 3.8
8+ with warnings .catch_warnings ():
9+ warnings .filterwarnings (
10+ "ignore" ,
11+ message = "Python 3\\ .8 is no longer supported by the Python core team and support for it is deprecated" ,
12+ category = UserWarning
13+ )
14+ import jwt
15+ import jwt .exceptions
16+
717import secrets
818
919from base64 import b64encode
You can’t perform that action at this time.
0 commit comments