Skip to content

Commit

Permalink
chore: remove python 3.8 support (#1707)
Browse files Browse the repository at this point in the history
* fix: remove extra py3.8 dependency

* chore: remove py3.8 from pr testing

* docs: add info to CHANGES

* tests: remove py3.8 from tox
  • Loading branch information
sijis authored Oct 26, 2024
1 parent eda1460 commit f9c2dc8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
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/checkout@v4.2.2
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

0 comments on commit f9c2dc8

Please sign in to comment.