Skip to content

Commit

Permalink
Drop official support for Python 3.8 (end of life) (#662)
Browse files Browse the repository at this point in the history
* Bump tox support to include Python 3.13

* Drop official support for Python 3.8 (end of life)
  • Loading branch information
amureki authored Nov 5, 2024
1 parent b3aa008 commit 6fcdc50
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
concurrency: ["cpython", "gevent"]

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Here's what it looks like:
count_words.send("http://example.com")

**Dramatiq** is :doc:`licensed<license>` under the LGPL and it
officially supports Python 3.8 and later.
officially supports Python 3.9 and later.


Get It Now
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Installation
============

Dramatiq supports Python versions 3.8 and up and is installable via
Dramatiq supports Python versions 3.9 and up and is installable via
`pip`_ or from source.


Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,11 @@ def rel(*xs):
],
include_package_data=True,
install_requires=dependencies,
python_requires=">=3.8",
python_requires=">=3.9",
extras_require=extra_dependencies,
entry_points={"console_scripts": ["dramatiq = dramatiq.__main__:main"]},
scripts=["bin/dramatiq-gevent"],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist=
py{38,39,310,311,312}{,-gevent}
py{39,310,311,312,313}{,-gevent}
docs
lint

Expand All @@ -14,7 +14,7 @@ commands=
passenv=
TRAVIS

[testenv:py{38,39,310,311,312}-gevent]
[testenv:py{39,310,311,312,313}-gevent]
setenv =
PYTHONTRACEMALLOC=1
extras=
Expand Down

0 comments on commit 6fcdc50

Please sign in to comment.