Skip to content

Commit 66f2427

Browse files
Updated docker file to use python 3.12x, and therefore fixed python c… (#357)
1 parent 760b066 commit 66f2427

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# --------------------------------------------------------------------------
88

99
# Use Python 3.9
10-
FROM python:3.9
10+
FROM python:3.12
1111
# Not sure if this line needs updating, I think this person no longer works on the project?
12-
LABEL author Marc Abramowitz <marc@marc-abramowitz.com>
12+
LABEL author Jessica Tegner <jessica@jessicategner.com> and pypandoc contributors
1313
# Update apt packages and install pandoc
1414
RUN apt update && apt upgrade -y && apt install pandoc -y
1515
# Update pip

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ packages = [
3333
]
3434

3535
[tool.poetry.dependencies]
36-
python = ">=3.7,<=3.12"
36+
python = ">=3.7,<3.13"
3737

3838
[tool.poetry.dev-dependencies]
3939
pandocfilters = "^1.5"

0 commit comments

Comments
 (0)