Skip to content

Commit 9b72d62

Browse files
committed
bump python base image to 3.1113.1
1 parent 52990ff commit 9b72d62

File tree

4 files changed

+33
-34
lines changed

4 files changed

+33
-34
lines changed

.pre-commit-config.yaml

Lines changed: 30 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,37 @@
11
exclude: |
2-
(?x)(
3-
^mpcontribs-portal/mpcontribs/users/|
4-
^binder/|
5-
^mpcontribs-ingester/|
6-
^mpcontribs-api/mpcontribs/api/redox_thermo_csp/
7-
)
2+
(?x)(
3+
^mpcontribs-portal/mpcontribs/users/|
4+
^binder/|
5+
^mpcontribs-ingester/|
6+
^mpcontribs-api/mpcontribs/api/redox_thermo_csp/
7+
)
88
99
repos:
10-
- repo: https://github.com/pre-commit/pre-commit-hooks
11-
rev: v6.0.0
12-
hooks:
13-
- id: end-of-file-fixer
14-
- id: trailing-whitespace
15-
- id: check-added-large-files
16-
- id: check-merge-conflict
17-
- id: fix-encoding-pragma
18-
- id: forbid-new-submodules
19-
- id: requirements-txt-fixer
10+
- repo: https://github.com/pre-commit/pre-commit-hooks
11+
rev: v6.0.0
12+
hooks:
13+
- id: end-of-file-fixer
14+
- id: trailing-whitespace
15+
- id: check-added-large-files
16+
- id: check-merge-conflict
17+
- id: fix-encoding-pragma
18+
- id: forbid-new-submodules
19+
- id: requirements-txt-fixer
2020

21-
- repo: https://github.com/awslabs/cfn-python-lint
22-
rev: v1.40.2
23-
hooks:
24-
- id: cfn-python-lint
25-
files: cloudformation/.*\.(json|yml|yaml)$
26-
args: ["--ignore-checks=E3030,E3001,E3002,E3012"]
21+
- repo: https://github.com/awslabs/cfn-python-lint
22+
rev: v1.40.3
23+
hooks:
24+
- id: cfn-python-lint
25+
files: cloudformation/.*\.(json|yml|yaml)$
26+
args: ["--ignore-checks=E3030,E3001,E3002,E3012"]
2727

28-
#- repo: https://gitlab.com/pycqa/flake8
29-
# rev: 3.7.9
30-
# hooks:
31-
# - id: flake8
32-
# args: [--max-line-length=99]
28+
#- repo: https://gitlab.com/pycqa/flake8
29+
# rev: 3.7.9
30+
# hooks:
31+
# - id: flake8
32+
# args: [--max-line-length=99]
3333

34-
- repo: https://github.com/ambv/black
35-
rev: 25.9.0
36-
hooks:
34+
- repo: https://github.com/psf/black
35+
rev: 25.9.0
36+
hooks:
3737
- id: black
38-
language_version: python3.7

mpcontribs-api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM materialsproject/devops:python-3.1113.0 AS base
1+
FROM materialsproject/devops:python-3.1113.1 AS base
22
RUN apt-get update && apt-get install -y --no-install-recommends supervisor libopenblas-dev libpq-dev vim && apt-get clean
33
WORKDIR /app
44

mpcontribs-kernel-gateway/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM materialsproject/devops:python-3.1113.0 AS base
1+
FROM materialsproject/devops:python-3.1113.1 AS base
22
RUN apt-get update && apt-get install -y --no-install-recommends libopenblas-dev libpq-dev curl && apt-get clean
33

44
FROM base AS python-deps

mpcontribs-portal/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM materialsproject/devops:python-3.1113.0 AS base
1+
FROM materialsproject/devops:python-3.1113.1 AS base
22
RUN apt-get update && apt-get install -y --no-install-recommends libopenblas-dev && apt-get clean
33
FROM node:25.0.0-slim AS node
44

0 commit comments

Comments
 (0)