Skip to content

Commit 9c48e6a

Browse files
committed
build: drop py3.8 support
1 parent 584d2b0 commit 9c48e6a

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/workflows/checks.yml

-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
py-version-img: [
22-
["3.8", "3.8-slim-bookworm"],
2322
["3.9", "3.9-slim-bookworm"],
2423
["3.10", "3.10-slim-bookworm"],
2524
["3.11", "3.11-slim-bookworm"]
@@ -82,7 +81,6 @@ jobs:
8281
fail-fast: true
8382
matrix:
8483
py-version-img-tag: [
85-
["3.8", "3.8-slim-bookworm", ""],
8684
["3.9", "3.9-slim-bookworm", ""],
8785
["3.10", "3.10-slim-bookworm", ""],
8886
["3.11", "3.11-slim-bookworm", "latest"],

examples/petstore-access-control/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ Some notes:
7777
> version of Python, you can set the Python image to be used as FOCA's base
7878
> image by defining the environment variable `PETSTORE_PY_IMAGE` before
7979
> executing the build command. For example:
80-
>
80+
>
8181
> ```bash
82-
> export PETSTORE_PY_IMAGE=3.8-slim-buster
82+
> export PETSTORE_PY_IMAGE=3.11-slim-bookworm
8383
> ```
84-
>
84+
>
8585
> * In case Docker complains about port conflicts or if any of the used ports
8686
> are blocked by a firewall, you will need to re-map the conflicting port(s) in
8787
> the [Docker Compose config][app-docker-compose]. In particular, for each of

examples/petstore/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ Some notes:
7575
> version of Python, you can set the Python image to be used as FOCA's base
7676
> image by defining the environment variable `PETSTORE_PY_IMAGE` before
7777
> executing the build command. For example:
78-
>
78+
>
7979
> ```bash
80-
> export PETSTORE_PY_IMAGE=3.8-slim-buster
80+
> export PETSTORE_PY_IMAGE=3.11-slim-bookworm
8181
> ```
82-
>
82+
>
8383
> * In case Docker complains about port conflicts or if any of the used ports
8484
> are blocked by a firewall, you will need to re-map the conflicting port(s) in
8585
> the [Docker Compose config][app-docker-compose]. In particular, for each of

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
"Intended Audience :: System Administrators",
5656
"License :: OSI Approved :: Apache Software License",
5757
"Natural Language :: English",
58-
"Programming Language :: Python :: 3.8",
5958
"Programming Language :: Python :: 3.9",
6059
"Programming Language :: Python :: 3.10",
6160
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)