Skip to content

Commit 17cf6b2

Browse files
authored
Merge pull request #56 from MITLibraries/IN-1087-maintenance-11-2024
IN 1087 - Update python version 3.12 and update dependencies
2 parents fde3fe8 + 4c1f2a9 commit 17cf6b2

File tree

6 files changed

+562
-5
lines changed

6 files changed

+562
-5
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
default_language_version:
2-
python: python3.11 # set for project python version
2+
python: python3.12 # set for project python version
33
repos:
44
- repo: local
55
hooks:

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.11.4
1+
3.12

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/lambda/python:3.11
1+
FROM public.ecr.aws/lambda/python:3.12
22

33
# Copy function code
44
COPY . ${LAMBDA_TASK_ROOT}/

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ pytest = "*"
1515
ruff = "*"
1616

1717
[requires]
18-
python_version = "3.11"
18+
python_version = "3.12"

Pipfile.lock

Lines changed: 557 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = ["tests/"]
1414
log_level = "INFO"
1515

1616
[tool.ruff]
17-
target-version = "py311"
17+
target-version = "py312"
1818

1919
# set max line length
2020
line-length = 90

0 commit comments

Comments
 (0)