Skip to content

Commit

Permalink
Merge branch 'rl-3.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
amenezes committed Oct 23, 2023
2 parents a145d90 + 904d0a5 commit b583eda
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
tests:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu]
fail-fast: true
runs-on: ${{ matrix.os }}-latest
Expand Down
2 changes: 1 addition & 1 deletion rabbit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .queue import Queue
from .subscribe import Subscribe

__version__ = "3.1.0"
__version__ = "3.2.0"
__all__ = [
"__version__",
"AioRabbitClient",
Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ universal = 1
[metadata]
name = rabbit-client
version = attr: rabbit.__version__
author = alexandre menezes
author = Alexandre Menezes
author_email = alexandre.fmenezes@gmail.com
description = async rabbit client
long_description = file: README.md
Expand All @@ -23,6 +23,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Framework :: AsyncIO
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Expand Down Expand Up @@ -91,8 +92,6 @@ commands =
branch = True
omit = **__init__.py**
rabbit/__version__.py
rabbit/migrations/*
tests/unit/migrations/*

[report]
show_missing = True
Expand Down

0 comments on commit b583eda

Please sign in to comment.