Skip to content

Commit 53451ab

Browse files
committed
remove Python 3.8 mentions
1 parent 61a5d2b commit 53451ab

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Once ``tahoe --version`` works, see `How to Run Tahoe-LAFS <docs/running.rst>`__
5656
🐍 Python 2
5757
-----------
5858

59-
Python 3.8 or later is required.
59+
Python 3.9 or later is required.
6060
If you are still using Python 2.7, use Tahoe-LAFS version 1.17.1.
6161

6262

src/allmydata/web/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from __future__ import annotations
55

66
from six import ensure_str
7-
import sys
8-
from importlib.resources import files as resource_files, as_file
7+
from importlib.resources import files as resource_files
8+
from importlib.resources import as_file
99
from contextlib import ExitStack
1010
import weakref
1111
from typing import Optional, Union, TypeVar, overload

tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,17 @@
77
# the tox-gh-actions package.
88
[gh-actions]
99
python =
10-
3.8: py38-coverage
1110
3.9: py39-coverage
1211
3.10: py310-coverage
1312
3.11: py311-coverage
1413
3.12: py312-coverage
15-
pypy-3.8: pypy38
1614
pypy-3.9: pypy39
1715

1816
[pytest]
1917
twisted = 1
2018

2119
[tox]
22-
envlist = typechecks,codechecks,py{38,39,310,311,312}-{coverage},pypy27,pypy38,pypy39,integration
20+
envlist = typechecks,codechecks,py{39,310,311,312}-{coverage},pypy39,integration
2321
minversion = 4
2422

2523
[testenv]
@@ -138,7 +136,7 @@ commands =
138136
# Different versions of Python have a different standard library, and we
139137
# want to be compatible with all the variations. For speed's sake we only do
140138
# the earliest and latest versions.
141-
mypy --python-version=3.8 src
139+
mypy --python-version=3.9 src
142140
mypy --python-version=3.12 src
143141

144142

0 commit comments

Comments
 (0)