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 1010 runs-on : ubuntu-latest
1111 steps :
1212 - uses : actions/checkout@v4
13- - uses : actions/setup-python@v4
13+ uses : actions/setup-python@v5
1414 - name : Install and configure Poetry
1515 run : |
1616 pip install poetry
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ exclude_lines = [
2222
2323[tool .poetry ]
2424name = " cryptojwt"
25- version = " 1.9.1 "
25+ version = " 1.9.2 "
2626description = " Python implementation of JWT, JWE, JWS and JWK"
2727authors = [" Roland Hedberg <roland@catalogix.se>" ]
2828license = " Apache-2.0"
Original file line number Diff line number Diff line change 11"""JSON Web Token"""
22
33import logging
4-
5- import pkg_resources
4+ from importlib .metadata import version
65
76from cryptojwt .jwe .jwe import JWE
87from cryptojwt .jwk import JWK
1716from .utils import b64encode_item
1817from .utils import split_token
1918
20- __version__ = pkg_resources . get_distribution ("cryptojwt" ). version
19+ __version__ = version ("cryptojwt" )
2120
2221__all__ = [
2322 "JWE" ,
You can’t perform that action at this time.
0 commit comments