Skip to content

Commit 85a1b93

Browse files
authored
Update default Python to 3.10.11 (#144)
Updates the default Python version for Docker and CI jobs like linting to 3.10.11 (latest 3.10 release as of this writing).
1 parent 03c408d commit 85a1b93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
parameters:
44
primary-python-version:
55
type: string
6-
default: "3.10.7"
6+
default: "3.10.11"
77

88
commands:
99
setup_pip:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# We separate them out so that the final `release` image can layer on top of
77
# this one without needing compiler-related packages.
88
##
9-
FROM python:3.10.7-slim as base
9+
FROM python:3.10.11-slim as base
1010
LABEL maintainer="[email protected]"
1111

1212
RUN apt-get update && apt-get install -y --no-install-recommends \

0 commit comments

Comments
 (0)