From 5c069b6fe5fb41ecc68f4708f2b7ba35b6d1b858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Mart=C3=ADnez=20S=C3=A1nchez?= Date: Sun, 12 Feb 2023 10:08:25 -0600 Subject: [PATCH] Update library workflows Added library workflows to be run in python 3.11 too --- .github/workflows/pylint.yml | 2 +- .github/workflows/tox-retro.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- requirements.txt | 4 ++-- setup.cfg | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) 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