Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop official support for Python 3.8 (end of life) #662

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading