Skip to content

Commit 1dab4e7

Browse files
committed
change: Dropped support for Python 3.8 (but should still work)
1 parent a565987 commit 1dab4e7

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/run_tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ jobs:
88
max-parallel: 6
99
matrix:
1010
python-version:
11-
- "3.8"
1211
- "3.9"
1312
- "3.10"
1413
- "3.11"

docs/changelog.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ Release 0.14 (in development)
3838

3939
.. rubric:: Removed APIs
4040

41-
* Dropped support for Python 2 and removed workarounds or helpers that only make sense in a Python 2/3 dual codebase.
41+
* Dropped support for Python 2 (EOL: 2020-01-01) and removed workarounds or helpers that only make sense in a Python 2/3 dual codebase.
42+
* Dropped support for Python 3.8 (EOL: 2024-10-07).
4243
* Removed the ``RouteReset`` exception and associated logic.
4344
* Removed the `bottle.py` console script entrypoint in favour of the new `bottle` script. You can still execute `bottle.py` directly or via `python -m bottle`. The only change is that the command installed by pip or similar tools into the bin/Scripts folder of the (virtual) environment is now called `bottle` to avoid circular import errors.
4445

@@ -48,7 +49,7 @@ Release 0.14 (in development)
4849

4950
.. rubric:: New features
5051

51-
* ``bottle.HTTPError`` raised on Invalid JSON now include the underlying exception in the ``exception`` field.
52+
* ``bottle.HTTPError`` raised on invalid JSON now include the underlying exception in the ``exception`` field.
5253

5354

5455
Release 0.13

docs/index.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ If you are in the unfortunate position to have to rely on "dead snakes" for prod
7171
- >=3.8 [2]_
7272
* - 0.14 (planned)
7373
- *dropped*
74-
- >=3.8
74+
- >=3.9 [2]_
7575

7676

7777

@@ -134,5 +134,4 @@ the unmodified library. In all other cases please ask first.
134134
.. rubric:: Footnotes
135135

136136
.. [1] Usage of the template or server adapter classes requires the corresponding template or server modules.
137-
.. [2] Bottle 0.13 technically still works with Python 3.6 and 3.7 but is not tested with those versions.
138-
137+
.. [2] Bottle often still works with recently discontinued Python 3.x versions. We will not intentionally break compatibility, but also no longer test against those versions. Use at your own risk.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
55
[project]
66
name = "bottle"
77
dynamic = ["version"]
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.9"
99
license = {file = "LICENSE"}
1010
description = "Fast and simple WSGI-framework for small web-applications."
1111
readme = "README.rst"

0 commit comments

Comments
 (0)