Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v5
- name: Set up QEMU
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'
- name: Install dependencies
run: |
pip install --upgrade pip
Expand Down
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:

# Conventional Commit message checker (commitizen)
- repo: https://github.com/commitizen-tools/commitizen
rev: v3.31.0
rev: v4.12.1
hooks:
- id: commitizen
stages:
Expand All @@ -19,7 +19,7 @@ repos:

# Standard pre-commit rules
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-case-conflict
- id: check-docstring-first
Expand All @@ -32,21 +32,21 @@ repos:
- --markdown-linebreak-ext=md
# Black (uncompromising) Python code formatter
- repo: https://github.com/psf/black
rev: 25.1.0
rev: 26.1.0
hooks:
- id: black
args:
- --target-version
- py312
- py314
# MyPy
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.0
rev: v1.19.1
hooks:
- id: mypy
files: ^operator
# Pylint
- repo: https://github.com/pycqa/pylint
rev: v3.3.7
rev: v4.0.4
hooks:
- id: pylint
files: ^operator
Expand All @@ -57,7 +57,7 @@ repos:
# All files that end '.yaml' or '.yaml.j2'
# See https://pre-commit.com/#filtering-files-with-types
- repo: https://github.com/adrienverge/yamllint
rev: v1.37.1
rev: v1.38.0
hooks:
- id: yamllint
types:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Informatics Matters Ltd
Copyright (c) 2026 Informatics Matters Ltd

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ services:
operator:
build:
context: operator
image: informaticsmatters/data-manager-job-operator:${IMAGE_TAG:-33.0.0}
image: informaticsmatters/data-manager-job-operator:${IMAGE_TAG:-35.0.0}
2 changes: 1 addition & 1 deletion operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.8-slim
FROM python:3.14.2-slim

# Labels
LABEL maintainer='Alan Christie <achristie@informaticsmatters.com>'
Expand Down
4 changes: 2 additions & 2 deletions operator/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kopf == 1.38.0
kubernetes == 32.0.1
kopf == 1.40.1
kubernetes == 35.0.0