Skip to content

Commit f9c2dc8

Browse files
authored
chore: remove python 3.8 support (#1707)
* fix: remove extra py3.8 dependency * chore: remove py3.8 from pr testing * docs: add info to CHANGES * tests: remove py3.8 from tox
1 parent eda1460 commit f9c2dc8

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
22+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
2323

2424
steps:
2525
- uses: actions/[email protected]

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ fixes:
1111
- chore: optimize Dockerfile (#1679)
1212
- docs: fix telegram install command (#1697)
1313
- chore: add python versions to test (#1705)
14+
- chore: remove python 3.8 support (#1707)
1415

1516
v6.2.0 (2024-01-01)
1617
-------------------

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
py_version = sys.version_info[:2]
2323

24-
if py_version < (3, 8):
25-
raise RuntimeError("Errbot requires Python 3.8 or later")
24+
if py_version < (3, 9):
25+
raise RuntimeError("Errbot requires Python 3.9 or later")
2626

2727
VERSION_FILE = os.path.join("errbot", "version.py")
2828

@@ -42,9 +42,6 @@
4242
"deepmerge==1.1.0",
4343
]
4444

45-
if py_version < (3, 9):
46-
deps.append("graphlib-backport==1.0.3")
47-
4845
src_root = os.curdir
4946

5047

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38,py39,py310,py311,py312,py312,codestyle,dist-check,sort,security,docs
2+
envlist = py39,py310,py311,py312,py312,codestyle,dist-check,sort,security,docs
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)