-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update base Docker image from python:3.11.4-slim-buster to python:3.1…
…1.4-slim-bookworm. Update dependencies: * cookiecutter from 2.1.1 to 2.2.3 * pytest from 7.3.1 to 7.4.0 * black from 23.3.0 to 23.7.0 * mypy from 1.4.0 to 1.4.1 * ruff from 0.0.275 to 0.0.278
- Loading branch information
Showing
5 changed files
with
185 additions
and
200 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = [ | |
{name = "Michal Nakoneczny", email = "[email protected]"}, | ||
] | ||
dependencies = [ | ||
"cookiecutter==2.1.1", | ||
"cookiecutter==2.2.3", | ||
] | ||
requires-python = ">=3.8" | ||
license = {text = "MIT"} | ||
|
@@ -16,7 +16,7 @@ homepage = "" | |
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pytest==7.3.1", | ||
"pytest==7.4.0", | ||
] | ||
[tool] | ||
[tool.pdm] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.11.4-slim-buster | ||
FROM python:3.11.4-slim-bookworm | ||
|
||
ARG USER_ID | ||
ARG GROUP_ID | ||
|
Oops, something went wrong.