diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 98a421b..5fe189b 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -48,7 +48,7 @@ jobs: if: needs.changes.outputs.api == 'true' strategy: matrix: - python-version: ["3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/tox-retro.yml b/.github/workflows/tox-retro.yml index d9036a0..e4b7332 100644 --- a/.github/workflows/tox-retro.yml +++ b/.github/workflows/tox-retro.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 5fb5834..3225fad 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] steps: # Checkout the code from the repository - uses: actions/checkout@v3 diff --git a/requirements.txt b/requirements.txt index 52c3517..d74ca0f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -pyjwt[crypto]==2.5.0 -cryptography==38.0.3 +pyjwt[crypto]==2.6.0 +cryptography==39.0.1 Flask==2.2.2 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 1253202..f361e18 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = Flask-authgen-jwt -version = 4.1.0 +version = 4.1.1 author = Diego Martinez license = MIT author_email = gd-code@outlook.com