File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- uses : actions/checkout@v4
13
- - uses : actions/setup-python@v4
13
+ uses : actions/setup-python@v5
14
14
- name : Install and configure Poetry
15
15
run : |
16
16
pip install poetry
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ exclude_lines = [
22
22
23
23
[tool .poetry ]
24
24
name = " cryptojwt"
25
- version = " 1.9.1 "
25
+ version = " 1.9.2 "
26
26
description = " Python implementation of JWT, JWE, JWS and JWK"
27
27
authors = [" Roland Hedberg <roland@catalogix.se>" ]
28
28
license = " Apache-2.0"
Original file line number Diff line number Diff line change 1
1
"""JSON Web Token"""
2
2
3
3
import logging
4
-
5
- import pkg_resources
4
+ from importlib .metadata import version
6
5
7
6
from cryptojwt .jwe .jwe import JWE
8
7
from cryptojwt .jwk import JWK
17
16
from .utils import b64encode_item
18
17
from .utils import split_token
19
18
20
- __version__ = pkg_resources . get_distribution ("cryptojwt" ). version
19
+ __version__ = version ("cryptojwt" )
21
20
22
21
__all__ = [
23
22
"JWE" ,
You can’t perform that action at this time.
0 commit comments