Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: upgrade base image & MongoDB; drop py3.8 #223

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ jobs:
fail-fast: true
matrix:
py-version-img: [
["3.8", "3.8-slim-bullseye"],
["3.9", "3.9-slim-bullseye"],
["3.10", "3.10-slim-bullseye"],
["3.11", "3.11-slim-bullseye"]
["3.9", "3.9-slim-bookworm"],
["3.10", "3.10-slim-bookworm"],
["3.11", "3.11-slim-bookworm"]
]
mongodb-version: ["4.2", "4.4", "5.0"]
mongodb-version: ["4.4", "5.0", "6.0", "7.0"]
mongodb-port: [12345]

steps:
Expand Down Expand Up @@ -82,10 +81,9 @@ jobs:
fail-fast: true
matrix:
py-version-img-tag: [
["3.8", "3.8-slim-bullseye", ""],
["3.9", "3.9-slim-bullseye", ""],
["3.10", "3.10-slim-bullseye", ""],
["3.11", "3.11-slim-bullseye", "latest"],
["3.9", "3.9-slim-bookworm", ""],
["3.10", "3.10-slim-bookworm", ""],
["3.11", "3.11-slim-bookworm", "latest"],
]

steps:
Expand Down
2 changes: 1 addition & 1 deletion examples/petstore-access-control/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Some notes:
> executing the build command. For example:
>
> ```bash
> export PETSTORE_PY_IMAGE=3.8-slim-buster
> export PETSTORE_PY_IMAGE=3.11-slim-bookworm
uniqueg marked this conversation as resolved.
Show resolved Hide resolved
> ```
>
> * In case Docker complains about port conflicts or if any of the used ports
Expand Down
2 changes: 1 addition & 1 deletion examples/petstore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Some notes:
> executing the build command. For example:
>
> ```bash
> export PETSTORE_PY_IMAGE=3.8-slim-buster
> export PETSTORE_PY_IMAGE=3.11-slim-bookworm
uniqueg marked this conversation as resolved.
Show resolved Hide resolved
> ```
>
> * In case Docker complains about port conflicts or if any of the used ports
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
Loading