Skip to content

Commit 7be77da

Browse files
authored
Merge pull request #18 from MITLibraries/IN-1086-maintenance-11-2024
IN 1086 - Bump python version 3.12 and update dependencies
2 parents 26b95e9 + da21872 commit 7be77da

File tree

6 files changed

+572
-5
lines changed

6 files changed

+572
-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 python:3.11-slim as build
1+
FROM python:3.12-slim as build
22
WORKDIR /app
33
COPY . .
44

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pytest = "*"
1616
ruff = "*"
1717

1818
[requires]
19-
python_version = "3.11"
19+
python_version = "3.12"
2020

2121
[scripts]
2222
my_app = "python -c \"from my_app.cli import main; main()\""

Pipfile.lock

Lines changed: 567 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)