Skip to content

Commit

Permalink
Merge pull request #84 from paullockaby/version-updates
Browse files Browse the repository at this point in the history
fix: updating python version to 3.13 and various actions updates
  • Loading branch information
plockaby authored Dec 15, 2024
2 parents 4b63905 + 01a25b4 commit 4a1e83d
Show file tree
Hide file tree
Showing 6 changed files with 95 additions and 95 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- id: cz
name: Create changelog and bump version
uses: commitizen-tools/commitizen-action@0.22.0
uses: commitizen-tools/commitizen-action@0.23.0
with:
changelog: true
changelog_increment_filename: "changes.md"
Expand All @@ -66,7 +66,7 @@ jobs:
git push origin main --tags
- name: Create release
uses: softprops/action-gh-release@v2.1.0
uses: softprops/action-gh-release@v2.2.0
with:
body_path: "changes.md"
tag_name: "v${{ steps.cz.outputs.version }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.12.x"
python-version: "3.13.x"
cache: "pip"

- name: Run linter
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.12.x"
python-version: "3.13.x"
cache: "poetry"

- name: Run python tests
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ repos:
rev: 24.10.0
hooks:
- id: black
language_version: python3.12
language_version: python3.13
args: [--line-length=120]
exclude: ^.*\b(migrations)\b.*$
stages: [pre-commit]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.8-slim-bookworm@sha256:2b0079146a74e23bf4ae8f6a28e1b484c6292f6fb904cbb51825b4a19812fcd8 AS base
FROM python:3.13.1-slim-bookworm@sha256:f41a75c9cee9391c09e0139f7b49d4b1fbb119944ec740ecce4040626dc07bed AS base

# github metadata
LABEL org.opencontainers.image.source=https://github.com/paullockaby/enphase-proxy
Expand Down
Loading

0 comments on commit 4a1e83d

Please sign in to comment.