From 5d473dbe89018646332414f695c3e2cd739d27dc Mon Sep 17 00:00:00 2001 From: Jim Madge Date: Fri, 9 Aug 2024 11:10:33 +0100 Subject: [PATCH 1/5] Update requirements --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index e1d5a4a..b3e7da1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ # -# This file is autogenerated by pip-compile with Python 3.11 +# This file is autogenerated by pip-compile with Python 3.12 # by the following command: # -# pip-compile --output-file=requirements.txt pyproject.toml +# pip-compile pyproject.toml # certifi==2024.7.4 # via requests From 3f86d54eb13bca02ac8169858eb62d73e35f7dbf Mon Sep 17 00:00:00 2001 From: Jim Madge Date: Fri, 9 Aug 2024 11:12:00 +0100 Subject: [PATCH 2/5] Add Python 3.12 support --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 727a22e..be34fe0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ all = [ ] [tool.black] -target-version = ["py310", "py311"] +target-version = ["py310", "py311", "py312"] [tool.ruff.lint] select = [ From 4615ebac50b90da186743f2ff46c9ffb23f48dad Mon Sep 17 00:00:00 2001 From: Jim Madge Date: Fri, 9 Aug 2024 11:12:46 +0100 Subject: [PATCH 3/5] Bump version --- nexus_allowlist/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nexus_allowlist/__about__.py b/nexus_allowlist/__about__.py index 1f34995..60be16e 100644 --- a/nexus_allowlist/__about__.py +++ b/nexus_allowlist/__about__.py @@ -1 +1 @@ -__version__ = "v0.9.0" +__version__ = "v0.10.0" From 7c91ea2cb4c394e24d62c482a71e9c0b64f8c792 Mon Sep 17 00:00:00 2001 From: Jim Madge Date: Fri, 9 Aug 2024 11:15:00 +0100 Subject: [PATCH 4/5] Update container image versions --- docker-compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 4e70290..3dccb1b 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -3,7 +3,7 @@ version: "3" services: nexus: container_name: nexus - image: sonatype/nexus3:3.58.1 + image: sonatype/nexus3:3.71.0 volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro @@ -25,7 +25,7 @@ services: restart: always reverse-proxy: container_name: reverse-proxy - image: caddy:2.7-alpine + image: caddy:2.8-alpine ports: - "8080:80" volumes: From 5d3103e0d27684578b9baf4bd831d77f01da53cd Mon Sep 17 00:00:00 2001 From: Jim Madge Date: Fri, 9 Aug 2024 11:18:01 +0100 Subject: [PATCH 5/5] Add Python 3.12 build test --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7105da5..557144c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10', '3.11'] + python-version: ['3.10', '3.11', '3.12'] steps: - name: Check out the repo uses: actions/checkout@v4