Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/[email protected]
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ fixes:
- chore: optimize Dockerfile (#1679)
- docs: fix telegram install command (#1697)
- chore: add python versions to test (#1705)
- chore: remove python 3.8 support (#1707)

v6.2.0 (2024-01-01)
-------------------
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

py_version = sys.version_info[:2]

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

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

Expand All @@ -42,9 +42,6 @@
"deepmerge==1.1.0",
]

if py_version < (3, 9):
deps.append("graphlib-backport==1.0.3")

src_root = os.curdir


Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38,py39,py310,py311,py312,py312,codestyle,dist-check,sort,security,docs
envlist = py39,py310,py311,py312,py312,codestyle,dist-check,sort,security,docs
skip_missing_interpreters = True

[testenv]
Expand Down