-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for CPython 3.11. (#200)
Also removed Celery 4 support with Python 3.11.
- Loading branch information
1 parent
b360a96
commit 87801fa
Showing
4 changed files
with
41 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,15 +34,15 @@ def tests_require(): | |
setuptools.setup( | ||
name="celery-pubsub", | ||
packages=["celery_pubsub"], | ||
version="2.0.0-beta1", | ||
version="2.0.0-beta2", | ||
description="A Publish and Subscribe library for Celery", | ||
long_description=long_description(), | ||
long_description_content_type="text/markdown", | ||
author="Samuel GIFFARD", | ||
author_email="[email protected]", | ||
license="MIT", | ||
url="https://github.com/Mulugruntz/celery-pubsub", | ||
download_url="https://github.com/Mulugruntz/celery-pubsub/tarball/2.0.0-beta1", | ||
download_url="https://github.com/Mulugruntz/celery-pubsub/tarball/2.0.0-beta2", | ||
keywords=["celery", "publish", "subscribe", "pubsub"], | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -52,6 +52,7 @@ def tests_require(): | |
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Software Development :: Libraries", | ||
|