Skip to content

Commit

Permalink
Merge branch 'main' into ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
jschlyter authored Jun 18, 2024
2 parents f94b929 + 8765de7 commit 16ffca5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
uses: actions/setup-python@v5
- name: Install and configure Poetry
run: |
pip install poetry
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ exclude_lines = [

[tool.poetry]
name = "cryptojwt"
version = "1.9.1"
version = "1.9.2"
description = "Python implementation of JWT, JWE, JWS and JWK"
authors = ["Roland Hedberg <[email protected]>"]
license = "Apache-2.0"
Expand Down
5 changes: 2 additions & 3 deletions src/cryptojwt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
"""JSON Web Token"""

import logging

import pkg_resources
from importlib.metadata import version

from cryptojwt.jwe.jwe import JWE
from cryptojwt.jwk import JWK
Expand All @@ -17,7 +16,7 @@
from .utils import b64encode_item
from .utils import split_token

__version__ = pkg_resources.get_distribution("cryptojwt").version
__version__ = version("cryptojwt")

__all__ = [
"JWE",
Expand Down

0 comments on commit 16ffca5

Please sign in to comment.