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 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: 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" 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 = [ 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