Skip to content

Commit

Permalink
Removing py37 support (#1652)
Browse files Browse the repository at this point in the history
* chore: remove py37 testing

* chore: update miminum supported version in setup

* docs: add details to CHANGES
  • Loading branch information
sijis committed Aug 28, 2023
1 parent 0d9993b commit 85343b1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.7, 3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v3.5.3
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ breaking:

- backend/slack: remove slack and slack_rtm built-in backends (#1581)
- core/logging: deprecate SENTRY_TRANSPORT config (#1604)
- core: removing py37 support (#1652)

features:

Expand Down
5 changes: 2 additions & 3 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, 7):
raise RuntimeError("Errbot requires Python 3.7 or later")
if py_version < (3, 8):
raise RuntimeError("Errbot requires Python 3.8 or later")

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

Expand Down Expand Up @@ -148,7 +148,6 @@ def read(fname, encoding="ascii"):
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
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 = py37,py38,py39,py310,codestyle,dist-check,sort,security,docs
envlist = py38,py39,py310,codestyle,dist-check,sort,security,docs
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 85343b1

Please sign in to comment.