Skip to content

Commit

Permalink
meta: drop Python 3.7 support
Browse files Browse the repository at this point in the history
In an effort to support the future (i.e. Sopel 8 and modern tooling),
Python 3.7 is now dropped for official support.

People using Sopel 7.1 can still use the perfectly fine previous version
0.4.0 of this plugin. Since Sopel 8 drops support for Py3.7, this
shouldn't be a problem for the future.
  • Loading branch information
Exirel committed Nov 11, 2023
1 parent c9129a0 commit 64058d2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The recommanded way to install this plugin is to use ``pip``::

$ pip install sopel-help

Note that this plugin requires Python 3.7+ and Sopel 7.1+.
Note that this plugin requires Python 3.8+ and Sopel 7.1+.

Configure
=========
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,13 @@ classifiers = [
"License :: Eiffel Forum License (EFL)",
"License :: OSI Approved :: Eiffel Forum License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Chat :: Internet Relay Chat",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"sopel>=7.1",
"requests",
Expand Down

0 comments on commit 64058d2

Please sign in to comment.