Skip to content

Commit

Permalink
fix: remove extra py3.8 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sijis committed Oct 26, 2024
1 parent eda1460 commit d2151b0
Showing 1 changed file with 2 additions and 5 deletions.
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

0 comments on commit d2151b0

Please sign in to comment.