Skip to content

Commit 27c3b68

Browse files
committed
Merge branch 'update_deps' into importlib_metadata
2 parents 6e642be + 20e4cdd commit 27c3b68

File tree

4 files changed

+13
-15
lines changed

4 files changed

+13
-15
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v2
42+
uses: github/codeql-action/init@v3
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@v2
53+
uses: github/codeql-action/autobuild@v3
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,4 +64,4 @@ jobs:
6464
# make release
6565

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v2
67+
uses: github/codeql-action/analyze@v3

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
name: Build with Poetry and Publish to PyPI
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
13-
- uses: actions/setup-python@v3
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v4
1414
- name: Install and configure Poetry
1515
run: |
1616
pip install poetry

.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,14 @@ jobs:
2323
strategy:
2424
matrix:
2525
python-version:
26-
- "3.7"
27-
- "3.8"
2826
- "3.9"
2927
- "3.10"
3028
- "3.11"
3129
- "3.12"
3230
steps:
33-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3432
- name: Set up Python ${{ matrix.python-version }}
35-
uses: actions/setup-python@v3
33+
uses: actions/setup-python@v4
3634
with:
3735
python-version: ${{ matrix.python-version }}
3836
- name: Install and configure Poetry

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ jwkconv = "cryptojwt.tools.keyconv:main"
3838
jwtpeek = "cryptojwt.tools.jwtpeek:main"
3939

4040
[tool.poetry.dependencies]
41-
python = "^3.7"
41+
python = "^3.9"
4242
cryptography = ">=3.4.6"
4343
requests = "^2.25.1"
4444

4545
[tool.poetry.dev-dependencies]
4646
alabaster = "^0.7.12"
47-
black = "^22"
48-
isort = "^5.6.4"
49-
pytest = "^6.1.2"
47+
black = "^24.4.2"
48+
isort = "^5.13.2"
49+
pytest = "^8.2.1"
5050
pytest-black = "^0.3.12"
51-
pytest-isort = "^1.2.0"
51+
pytest-isort = "^4.0.0"
5252
pytest-cov = "^4.0.0"
5353
responses = "^0.13.0"
5454
sphinx = "^3.5.2"

0 commit comments

Comments
 (0)