Skip to content

Commit f94ac7c

Browse files
Merge pull request bepasty#332 from ThomasWaldmann/drop-py38-py39
drop support for Python 3.8 and 3.9
2 parents 013245c + 531caad commit f94ac7c

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@ jobs:
4848
strategy:
4949
matrix:
5050
include:
51-
- os: ubuntu-22.04
52-
python-version: '3.8'
53-
toxenv: py38
54-
- os: ubuntu-24.04
55-
python-version: '3.9'
56-
toxenv: py39
5751
- os: ubuntu-24.04
5852
python-version: '3.10'
5953
toxenv: py310

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ maintainers = [{name="Thomas Waldmann", email="[email protected]"}]
1414
description = "a binary pastebin / file upload service"
1515
readme = "README.rst"
1616
keywords = ["text", "image", "audio", "video", "binary", "pastebin", "upload", "download", "service", "wsgi", "flask"]
17-
requires-python = ">=3.8"
17+
requires-python = ">=3.10"
1818
classifiers = [
1919
"Development Status :: 5 - Production/Stable",
2020
"Environment :: Web Environment",
@@ -23,8 +23,6 @@ classifiers = [
2323
"Framework :: Flask",
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.8",
27-
"Programming Language :: Python :: 3.9",
2826
"Programming Language :: Python :: 3.10",
2927
"Programming Language :: Python :: 3.11",
3028
"Programming Language :: Python :: 3.12",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py{38,39,310,311,312,313},flake8
2+
envlist=py{310,311,312,313},flake8
33

44
[testenv]
55
deps = -r{toxinidir}/requirements.d/dev.txt

0 commit comments

Comments
 (0)